From ceb86dea55afbbc3ed595a6f483b834e0205a11c Mon Sep 17 00:00:00 2001 From: mtchoum1 Date: Thu, 26 Jun 2025 09:59:22 -0400 Subject: [PATCH] Migrated dependencies to a single pyproject.toml file for use with the new Python package manager uv --- pyproject.toml | 279 +- uv.lock | 12267 ++++++++++++++++++++++++++++++++++++++++++++--- 2 files changed, 11874 insertions(+), 672 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index cc6da1084..6f4531269 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -5,12 +5,14 @@ version = "2025.1" description = "Open Data Hub / OpenShift AI Notebook / Workbench images, and tests for the same in Python." readme = "README.md" package-mode = false -requires-python = ">=3.12,<3.13" - -# https://docs.astral.sh/uv/concepts/projects/dependencies/#managing-dependencies -dependencies = [] +requires-python = ">=3.11,<3.13" [dependency-groups] + +############################ +# Python Dependency Groups # +############################ + dev = [ "pre-commit", "pyright", @@ -32,13 +34,280 @@ dev = [ "openshift-python-wrapper", ] +base = [ + + "wheel~=0.45.1", + "setuptools~=75.8.2", +] + +jupyter-base = [ + "jupyterlab==4.2.7", + "jupyter-server~=2.15.0", + "jupyter-server-proxy~=4.4.0", + "jupyter-server-terminals~=0.5.3", + "jupyterlab-git~=0.50.1", + "nbdime~=4.0.2", + "nbgitpuller~=1.2.2", +] + +elyra-base = [ + "odh-elyra==4.2.0", + "jupyterlab-lsp~=5.1.0", + "jupyterlab-widgets~=3.0.13", + "jupyter-resource-usage~=1.1.1", +] + +elyra-preferred = [ + "jupyter-bokeh~=4.0.5", +] + +elyra-trustyai = [ + "jupyter-bokeh~=3.0.5", +] + +db-connectors = [ + "pymongo~=4.11.2", + "psycopg~=3.2.5", + "pyodbc~=5.2.0", + "mysql-connector-python~=9.2.0" +] + +# onnxconverter-common ~=1.13.0 required for skl2onnx, as upgraded version is not compatible with protobuf +datascience-base = [ + "boto3 ~=1.37.8", + "kafka-python-ng ~=2.2.3", + "kfp ~=2.12.1", + "plotly ~=6.0.0", + "scipy ~=1.15.2", + "skl2onnx ~=1.18.0", + "onnxconverter-common ~=1.13.0", + "codeflare-sdk ~=0.27.0", + "kubeflow-training ==1.9.0" +] + +datascience-preferred = [ + "matplotlib~=3.10.1", + "numpy~=2.2.3", + "pandas~=2.2.3", + "scikit-learn~=1.6.1", +] + +datascience-tensorflow = [ + "matplotlib~=3.10.1", + "numpy~=1.26.4", + "pandas~=2.2.3", + "scikit-learn~=1.6.1", +] + +datascience-trustyai = [ + "matplotlib ~=3.6.3", + "numpy ~=1.24.1", + "pandas ~=1.5.3", + "scikit-learn ~=1.2.1" +] + +tensorflowcuda= [ + "tensorflow[and-cuda]~=2.18.0", + "tensorboard~=2.18.0", + "tf2onnx~=1.16.1", +] +tensorflowrocm = [ + "tensorflow-rocm~=2.14.0.600", + "tensorboard~=2.14.0", + "tf2onnx~=1.16.1", +] +pytorchcuda = [ + "tensorboard~=2.19.0", + "torch==2.6.0", + "torchvision==0.21.0", +] +pytorchrocm = [ + "tensorboard~=2.18.0", + "torch==2.6.0", + "torchvision==0.21.0", + "pytorch-triton-rocm~=3.2.0", +] +trustyai = [ + "torch==2.6.0", + "transformers~=4.49.0", + "datasets~=3.4.1", + "accelerate~=1.5.2", + "trustyai~=0.6.1", +] + +######################### +# Workbench Image Groups # +######################### + +jupyter-minimal-image = [ + { include-group = "dev" }, + { include-group = "base" }, + { include-group = "jupyter-base" }, +] + +jupyter-datascience-image = [ + { include-group = "dev" }, + { include-group = "base" }, + { include-group = "jupyter-base" }, + { include-group = "elyra-base" }, + { include-group = "elyra-preferred" }, + { include-group = "datascience-base" }, + { include-group = "datascience-preferred" }, + { include-group = "db-connectors" }, +] + +jupyter-tensorflow-image = [ + { include-group = "dev" }, + { include-group = "base" }, + { include-group = "jupyter-base" }, + { include-group = "elyra-base" }, + { include-group = "elyra-preferred" }, + { include-group = "datascience-base" }, + { include-group = "datascience-tensorflow" }, + { include-group = "db-connectors" }, + { include-group = "tensorflowcuda" }, +] + +jupyter-tensorflow-rocm-image = [ + { include-group = "dev" }, + { include-group = "base" }, + { include-group = "jupyter-base" }, + { include-group = "elyra-base" }, + { include-group = "elyra-preferred" }, + { include-group = "datascience-base" }, + { include-group = "datascience-tensorflow" }, + { include-group = "db-connectors" }, + { include-group = "tensorflowrocm" }, +] + +jupyter-pytorch-image = [ + { include-group = "dev" }, + { include-group = "base" }, + { include-group = "jupyter-base" }, + { include-group = "elyra-base" }, + { include-group = "elyra-preferred" }, + { include-group = "datascience-base" }, + { include-group = "datascience-preferred" }, + { include-group = "db-connectors" }, + { include-group = "pytorchcuda" }, +] + +jupyter-pytorch-rocm-image = [ + { include-group = "dev" }, + { include-group = "base" }, + { include-group = "jupyter-base" }, + { include-group = "elyra-base" }, + { include-group = "elyra-preferred" }, + { include-group = "datascience-base" }, + { include-group = "datascience-preferred" }, + { include-group = "db-connectors" }, + { include-group = "pytorchrocm" }, +] + +jupyter-trustyai-image = [ + { include-group = "dev" }, + { include-group = "base" }, + { include-group = "jupyter-base" }, + { include-group = "elyra-base" }, + { include-group = "elyra-trustyai" }, + { include-group = "datascience-base" }, + { include-group = "datascience-trustyai" }, + { include-group = "db-connectors" }, + { include-group = "trustyai" }, +] + +[tool.uv.sources] +torch = [ + { index = "pytorch-cuda", group = "pytorchcuda" }, + { index = "pytorch-cuda", group = "trustyai" }, + { index = "pytorch-rocm", group = "pytorchrocm" }, +] +torchvision = [ + { index = "pytorch-cuda", group = "pytorchcuda" }, + { index = "pytorch-rocm", group = "pytorchrocm" }, +] +pytorch-triton-rocm = [ + { index = "pytorch-rocm" }, +] + + +[[tool.uv.index]] +name = "pytorch-cuda" +url = "https://download.pytorch.org/whl/cu126" +explicit = true + +[[tool.uv.index]] +name = "pytorch-rocm" +url = "https://download.pytorch.org/whl/rocm6.2.4" +explicit = true + +[[tool.uv.index]] +name = "pypi" +url = "https://pypi.org/simple/" +explicit = true + +[[tool.uv.dependency-metadata]] +name = "tf2onnx" +version = "1.16.1" +requires-dist = ["protobuf"] + +[[tool.uv.dependency-metadata]] +name = "tensorflow-rocm" +version = "2.14.0.600" +requires-dist = [ + "tensorflow-cpu-aws; platform_machine != 'x86_64'", + "tensorflow-estimator", + "tensorflow-io-gcs-filesystem", +] + [tool.uv] package = false environments = [ - "sys_platform == 'darwin'", "sys_platform == 'linux'", ] +conflicts = [ + [ + { group = "elyra-preferred" }, + { group = "elyra-trustyai" } + ], + [ + { group = "elyra-preferred" }, + { group = "trustyai" } + ], + [ + { group = "datascience-preferred" }, + { group = "trustyai" }, + { group = "tensorflowcuda" }, + ], + [ + { group = "datascience-tensorflow" }, + { group = "trustyai" } + ], + [ + { group = "datascience-preferred" }, + { group = "datascience-trustyai" }, + { group = "datascience-tensorflow" }, + ], + [ + { group = "tensorflowcuda" }, + { group = "tensorflowrocm" }, + { group = "pytorchcuda" }, + { group = "pytorchrocm" }, + { group = "trustyai" }, + ], + [ + { group = "tensorflowcuda" }, + { group = "tensorflowrocm" }, + { group = "datascience-base" }, + ], + [ + { group = "tensorflowcuda" }, + { group = "trustyai" }, + { group = "datascience-trustyai" }, + ] +] + # https://github.com/astral-sh/uv/issues/3957#issuecomment-2659350181 [build-system] requires = ["uv-build"] diff --git a/uv.lock b/uv.lock index 05eadbf82..925e21d7b 100644 --- a/uv.lock +++ b/uv.lock @@ -1,1144 +1,11379 @@ version = 1 -revision = 1 -requires-python = "==3.12.*" +revision = 2 +requires-python = ">=3.11, <3.13" resolution-markers = [ - "sys_platform == 'darwin'", - "sys_platform == 'linux'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", ] supported-markers = [ - "sys_platform == 'darwin'", "sys_platform == 'linux'", ] +conflicts = [[ + { package = "notebooks", group = "elyra-preferred" }, + { package = "notebooks", group = "elyra-trustyai" }, +], [ + { package = "notebooks", group = "elyra-preferred" }, + { package = "notebooks", group = "trustyai" }, +], [ + { package = "notebooks", group = "datascience-preferred" }, + { package = "notebooks", group = "tensorflowcuda" }, + { package = "notebooks", group = "trustyai" }, +], [ + { package = "notebooks", group = "datascience-tensorflow" }, + { package = "notebooks", group = "trustyai" }, +], [ + { package = "notebooks", group = "datascience-preferred" }, + { package = "notebooks", group = "datascience-tensorflow" }, + { package = "notebooks", group = "datascience-trustyai" }, +], [ + { package = "notebooks", group = "pytorchcuda" }, + { package = "notebooks", group = "pytorchrocm" }, + { package = "notebooks", group = "tensorflowcuda" }, + { package = "notebooks", group = "tensorflowrocm" }, + { package = "notebooks", group = "trustyai" }, +], [ + { package = "notebooks", group = "datascience-base" }, + { package = "notebooks", group = "tensorflowcuda" }, + { package = "notebooks", group = "tensorflowrocm" }, +], [ + { package = "notebooks", group = "datascience-trustyai" }, + { package = "notebooks", group = "tensorflowcuda" }, + { package = "notebooks", group = "trustyai" }, +], [ + { package = "notebooks", group = "jupyter-pytorch-rocm-image" }, + { package = "notebooks", group = "jupyter-trustyai-image" }, + { package = "notebooks", group = "pytorchcuda" }, + { package = "notebooks", group = "tensorflowcuda" }, + { package = "notebooks", group = "tensorflowrocm" }, +], [ + { package = "notebooks", group = "jupyter-pytorch-image" }, + { package = "notebooks", group = "jupyter-tensorflow-rocm-image" }, + { package = "notebooks", group = "jupyter-trustyai-image" }, +], [ + { package = "notebooks", group = "jupyter-pytorch-image" }, + { package = "notebooks", group = "jupyter-tensorflow-image" }, + { package = "notebooks", group = "trustyai" }, +], [ + { package = "notebooks", group = "jupyter-pytorch-rocm-image" }, + { package = "notebooks", group = "jupyter-trustyai-image" }, + { package = "notebooks", group = "tensorflowcuda" }, +], [ + { package = "notebooks", group = "jupyter-pytorch-rocm-image" }, + { package = "notebooks", group = "tensorflowcuda" }, + { package = "notebooks", group = "tensorflowrocm" }, +], [ + { package = "notebooks", group = "datascience-trustyai" }, + { package = "notebooks", group = "jupyter-datascience-image" }, + { package = "notebooks", group = "jupyter-tensorflow-image" }, +], [ + { package = "notebooks", group = "elyra-trustyai" }, + { package = "notebooks", group = "jupyter-datascience-image" }, +], [ + { package = "notebooks", group = "jupyter-pytorch-image" }, + { package = "notebooks", group = "jupyter-tensorflow-rocm-image" }, + { package = "notebooks", group = "tensorflowcuda" }, +], [ + { package = "notebooks", group = "jupyter-tensorflow-rocm-image" }, + { package = "notebooks", group = "jupyter-trustyai-image" }, +], [ + { package = "notebooks", group = "jupyter-tensorflow-image" }, + { package = "notebooks", group = "trustyai" }, +], [ + { package = "notebooks", group = "jupyter-pytorch-image" }, + { package = "notebooks", group = "jupyter-pytorch-rocm-image" }, + { package = "notebooks", group = "jupyter-tensorflow-rocm-image" }, + { package = "notebooks", group = "jupyter-trustyai-image" }, + { package = "notebooks", group = "tensorflowcuda" }, +], [ + { package = "notebooks", group = "jupyter-datascience-image" }, + { package = "notebooks", group = "jupyter-tensorflow-rocm-image" }, + { package = "notebooks", group = "jupyter-trustyai-image" }, +], [ + { package = "notebooks", group = "jupyter-datascience-image" }, + { package = "notebooks", group = "jupyter-tensorflow-image" }, + { package = "notebooks", group = "trustyai" }, +], [ + { package = "notebooks", group = "jupyter-tensorflow-rocm-image" }, + { package = "notebooks", group = "tensorflowcuda" }, +], [ + { package = "notebooks", group = "jupyter-datascience-image" }, + { package = "notebooks", group = "jupyter-tensorflow-rocm-image" }, + { package = "notebooks", group = "tensorflowcuda" }, +], [ + { package = "notebooks", group = "jupyter-pytorch-image" }, + { package = "notebooks", group = "jupyter-trustyai-image" }, + { package = "notebooks", group = "pytorchrocm" }, + { package = "notebooks", group = "tensorflowcuda" }, + { package = "notebooks", group = "tensorflowrocm" }, +], [ + { package = "notebooks", group = "elyra-trustyai" }, + { package = "notebooks", group = "jupyter-tensorflow-image" }, +], [ + { package = "notebooks", group = "jupyter-pytorch-image" }, + { package = "notebooks", group = "jupyter-pytorch-rocm-image" }, + { package = "notebooks", group = "tensorflowcuda" }, + { package = "notebooks", group = "tensorflowrocm" }, + { package = "notebooks", group = "trustyai" }, +], [ + { package = "notebooks", group = "jupyter-tensorflow-image" }, + { package = "notebooks", group = "tensorflowcuda" }, + { package = "notebooks", group = "tensorflowrocm" }, +], [ + { package = "notebooks", group = "jupyter-pytorch-rocm-image" }, + { package = "notebooks", group = "jupyter-tensorflow-rocm-image" }, + { package = "notebooks", group = "jupyter-trustyai-image" }, + { package = "notebooks", group = "pytorchcuda" }, + { package = "notebooks", group = "tensorflowcuda" }, +], [ + { package = "notebooks", group = "jupyter-pytorch-image" }, + { package = "notebooks", group = "tensorflowcuda" }, + { package = "notebooks", group = "trustyai" }, +], [ + { package = "notebooks", group = "jupyter-pytorch-image" }, + { package = "notebooks", group = "jupyter-tensorflow-image" }, + { package = "notebooks", group = "tensorflowrocm" }, +], [ + { package = "notebooks", group = "datascience-preferred" }, + { package = "notebooks", group = "jupyter-tensorflow-image" }, + { package = "notebooks", group = "jupyter-trustyai-image" }, +], [ + { package = "notebooks", group = "jupyter-pytorch-rocm-image" }, + { package = "notebooks", group = "jupyter-tensorflow-rocm-image" }, + { package = "notebooks", group = "pytorchcuda" }, + { package = "notebooks", group = "tensorflowcuda" }, + { package = "notebooks", group = "trustyai" }, +], [ + { package = "notebooks", group = "datascience-trustyai" }, + { package = "notebooks", group = "jupyter-pytorch-rocm-image" }, + { package = "notebooks", group = "jupyter-tensorflow-image" }, +], [ + { package = "notebooks", group = "jupyter-tensorflow-image" }, + { package = "notebooks", group = "jupyter-tensorflow-rocm-image" }, + { package = "notebooks", group = "tensorflowrocm" }, +], [ + { package = "notebooks", group = "elyra-preferred" }, + { package = "notebooks", group = "jupyter-trustyai-image" }, +], [ + { package = "notebooks", group = "datascience-tensorflow" }, + { package = "notebooks", group = "jupyter-trustyai-image" }, +], [ + { package = "notebooks", group = "jupyter-tensorflow-image" }, + { package = "notebooks", group = "tensorflowrocm" }, +], [ + { package = "notebooks", group = "jupyter-pytorch-image" }, + { package = "notebooks", group = "jupyter-tensorflow-image" }, + { package = "notebooks", group = "jupyter-trustyai-image" }, + { package = "notebooks", group = "pytorchrocm" }, + { package = "notebooks", group = "tensorflowrocm" }, +], [ + { package = "notebooks", group = "jupyter-trustyai-image" }, + { package = "notebooks", group = "pytorchcuda" }, + { package = "notebooks", group = "pytorchrocm" }, + { package = "notebooks", group = "tensorflowcuda" }, + { package = "notebooks", group = "tensorflowrocm" }, +], [ + { package = "notebooks", group = "jupyter-tensorflow-rocm-image" }, + { package = "notebooks", group = "trustyai" }, +], [ + { package = "notebooks", group = "datascience-trustyai" }, + { package = "notebooks", group = "jupyter-pytorch-image" }, + { package = "notebooks", group = "jupyter-tensorflow-image" }, +], [ + { package = "notebooks", group = "jupyter-datascience-image" }, + { package = "notebooks", group = "tensorflowcuda" }, + { package = "notebooks", group = "trustyai" }, +], [ + { package = "notebooks", group = "jupyter-datascience-image" }, + { package = "notebooks", group = "jupyter-tensorflow-image" }, + { package = "notebooks", group = "tensorflowrocm" }, +], [ + { package = "notebooks", group = "jupyter-pytorch-image" }, + { package = "notebooks", group = "jupyter-pytorch-rocm-image" }, + { package = "notebooks", group = "jupyter-tensorflow-image" }, + { package = "notebooks", group = "jupyter-tensorflow-rocm-image" }, + { package = "notebooks", group = "jupyter-trustyai-image" }, +], [ + { package = "notebooks", group = "jupyter-pytorch-rocm-image" }, + { package = "notebooks", group = "jupyter-tensorflow-image" }, + { package = "notebooks", group = "jupyter-tensorflow-rocm-image" }, +], [ + { package = "notebooks", group = "jupyter-datascience-image" }, + { package = "notebooks", group = "jupyter-trustyai-image" }, +], [ + { package = "notebooks", group = "datascience-tensorflow" }, + { package = "notebooks", group = "datascience-trustyai" }, + { package = "notebooks", group = "jupyter-pytorch-image" }, +], [ + { package = "notebooks", group = "jupyter-pytorch-image" }, + { package = "notebooks", group = "jupyter-pytorch-rocm-image" }, + { package = "notebooks", group = "jupyter-trustyai-image" }, + { package = "notebooks", group = "tensorflowcuda" }, + { package = "notebooks", group = "tensorflowrocm" }, +], [ + { package = "notebooks", group = "jupyter-tensorflow-image" }, + { package = "notebooks", group = "jupyter-trustyai-image" }, + { package = "notebooks", group = "trustyai" }, +], [ + { package = "notebooks", group = "datascience-tensorflow" }, + { package = "notebooks", group = "datascience-trustyai" }, + { package = "notebooks", group = "jupyter-pytorch-rocm-image" }, +], [ + { package = "notebooks", group = "jupyter-pytorch-image" }, + { package = "notebooks", group = "jupyter-tensorflow-rocm-image" }, + { package = "notebooks", group = "pytorchrocm" }, + { package = "notebooks", group = "tensorflowcuda" }, + { package = "notebooks", group = "trustyai" }, +], [ + { package = "notebooks", group = "jupyter-pytorch-image" }, + { package = "notebooks", group = "jupyter-trustyai-image" }, + { package = "notebooks", group = "tensorflowcuda" }, +], [ + { package = "notebooks", group = "jupyter-pytorch-image" }, + { package = "notebooks", group = "tensorflowcuda" }, + { package = "notebooks", group = "tensorflowrocm" }, +], [ + { package = "notebooks", group = "datascience-preferred" }, + { package = "notebooks", group = "datascience-trustyai" }, + { package = "notebooks", group = "jupyter-tensorflow-rocm-image" }, +], [ + { package = "notebooks", group = "datascience-base" }, + { package = "notebooks", group = "jupyter-tensorflow-image" }, + { package = "notebooks", group = "jupyter-tensorflow-rocm-image" }, +], [ + { package = "notebooks", group = "jupyter-pytorch-rocm-image" }, + { package = "notebooks", group = "jupyter-tensorflow-image" }, + { package = "notebooks", group = "jupyter-tensorflow-rocm-image" }, + { package = "notebooks", group = "pytorchcuda" }, + { package = "notebooks", group = "trustyai" }, +], [ + { package = "notebooks", group = "datascience-trustyai" }, + { package = "notebooks", group = "jupyter-tensorflow-image" }, + { package = "notebooks", group = "jupyter-trustyai-image" }, +], [ + { package = "notebooks", group = "datascience-preferred" }, + { package = "notebooks", group = "jupyter-tensorflow-rocm-image" }, + { package = "notebooks", group = "jupyter-trustyai-image" }, +], [ + { package = "notebooks", group = "datascience-preferred" }, + { package = "notebooks", group = "jupyter-tensorflow-image" }, + { package = "notebooks", group = "trustyai" }, +], [ + { package = "notebooks", group = "jupyter-trustyai-image" }, + { package = "notebooks", group = "tensorflowcuda" }, +], [ + { package = "notebooks", group = "jupyter-pytorch-rocm-image" }, + { package = "notebooks", group = "pytorchcuda" }, + { package = "notebooks", group = "tensorflowcuda" }, + { package = "notebooks", group = "tensorflowrocm" }, + { package = "notebooks", group = "trustyai" }, +], [ + { package = "notebooks", group = "jupyter-datascience-image" }, + { package = "notebooks", group = "jupyter-trustyai-image" }, + { package = "notebooks", group = "tensorflowcuda" }, +], [ + { package = "notebooks", group = "jupyter-datascience-image" }, + { package = "notebooks", group = "tensorflowcuda" }, + { package = "notebooks", group = "tensorflowrocm" }, +], [ + { package = "notebooks", group = "jupyter-pytorch-rocm-image" }, + { package = "notebooks", group = "jupyter-tensorflow-image" }, + { package = "notebooks", group = "jupyter-tensorflow-rocm-image" }, + { package = "notebooks", group = "jupyter-trustyai-image" }, + { package = "notebooks", group = "pytorchcuda" }, +], [ + { package = "notebooks", group = "jupyter-tensorflow-rocm-image" }, + { package = "notebooks", group = "jupyter-trustyai-image" }, + { package = "notebooks", group = "pytorchcuda" }, + { package = "notebooks", group = "pytorchrocm" }, + { package = "notebooks", group = "tensorflowcuda" }, +], [ + { package = "notebooks", group = "jupyter-pytorch-rocm-image" }, + { package = "notebooks", group = "jupyter-trustyai-image" }, +], [ + { package = "notebooks", group = "jupyter-pytorch-rocm-image" }, + { package = "notebooks", group = "jupyter-tensorflow-image" }, + { package = "notebooks", group = "jupyter-trustyai-image" }, +], [ + { package = "notebooks", group = "jupyter-pytorch-image" }, + { package = "notebooks", group = "jupyter-pytorch-rocm-image" }, + { package = "notebooks", group = "jupyter-tensorflow-image" }, + { package = "notebooks", group = "jupyter-tensorflow-rocm-image" }, + { package = "notebooks", group = "trustyai" }, +], [ + { package = "notebooks", group = "jupyter-tensorflow-image" }, + { package = "notebooks", group = "jupyter-trustyai-image" }, + { package = "notebooks", group = "tensorflowrocm" }, +], [ + { package = "notebooks", group = "jupyter-datascience-image" }, + { package = "notebooks", group = "trustyai" }, +], [ + { package = "notebooks", group = "jupyter-pytorch-image" }, + { package = "notebooks", group = "jupyter-trustyai-image" }, +], [ + { package = "notebooks", group = "datascience-preferred" }, + { package = "notebooks", group = "datascience-tensorflow" }, + { package = "notebooks", group = "jupyter-trustyai-image" }, +], [ + { package = "notebooks", group = "jupyter-pytorch-image" }, + { package = "notebooks", group = "pytorchrocm" }, + { package = "notebooks", group = "tensorflowcuda" }, + { package = "notebooks", group = "tensorflowrocm" }, + { package = "notebooks", group = "trustyai" }, +], [ + { package = "notebooks", group = "datascience-trustyai" }, + { package = "notebooks", group = "jupyter-tensorflow-image" }, + { package = "notebooks", group = "trustyai" }, +], [ + { package = "notebooks", group = "jupyter-tensorflow-rocm-image" }, + { package = "notebooks", group = "tensorflowcuda" }, + { package = "notebooks", group = "tensorflowrocm" }, +], [ + { package = "notebooks", group = "jupyter-tensorflow-rocm-image" }, + { package = "notebooks", group = "jupyter-trustyai-image" }, + { package = "notebooks", group = "tensorflowcuda" }, +], [ + { package = "notebooks", group = "jupyter-pytorch-image" }, + { package = "notebooks", group = "jupyter-tensorflow-image" }, + { package = "notebooks", group = "jupyter-tensorflow-rocm-image" }, +], [ + { package = "notebooks", group = "datascience-tensorflow" }, + { package = "notebooks", group = "datascience-trustyai" }, + { package = "notebooks", group = "jupyter-datascience-image" }, +], [ + { package = "notebooks", group = "datascience-tensorflow" }, + { package = "notebooks", group = "jupyter-datascience-image" }, + { package = "notebooks", group = "jupyter-trustyai-image" }, +], [ + { package = "notebooks", group = "datascience-trustyai" }, + { package = "notebooks", group = "jupyter-datascience-image" }, + { package = "notebooks", group = "jupyter-tensorflow-rocm-image" }, +], [ + { package = "notebooks", group = "jupyter-pytorch-image" }, + { package = "notebooks", group = "jupyter-tensorflow-rocm-image" }, + { package = "notebooks", group = "jupyter-trustyai-image" }, + { package = "notebooks", group = "pytorchrocm" }, + { package = "notebooks", group = "tensorflowcuda" }, +], [ + { package = "notebooks", group = "jupyter-trustyai-image" }, + { package = "notebooks", group = "tensorflowcuda" }, + { package = "notebooks", group = "trustyai" }, +], [ + { package = "notebooks", group = "jupyter-pytorch-rocm-image" }, + { package = "notebooks", group = "trustyai" }, +], [ + { package = "notebooks", group = "jupyter-tensorflow-image" }, + { package = "notebooks", group = "jupyter-tensorflow-rocm-image" }, +], [ + { package = "notebooks", group = "jupyter-tensorflow-image" }, + { package = "notebooks", group = "jupyter-trustyai-image" }, + { package = "notebooks", group = "pytorchcuda" }, + { package = "notebooks", group = "pytorchrocm" }, + { package = "notebooks", group = "tensorflowrocm" }, +], [ + { package = "notebooks", group = "jupyter-pytorch-rocm-image" }, + { package = "notebooks", group = "jupyter-tensorflow-rocm-image" }, + { package = "notebooks", group = "jupyter-trustyai-image" }, +], [ + { package = "notebooks", group = "jupyter-pytorch-rocm-image" }, + { package = "notebooks", group = "jupyter-tensorflow-image" }, + { package = "notebooks", group = "trustyai" }, +], [ + { package = "notebooks", group = "jupyter-datascience-image" }, + { package = "notebooks", group = "jupyter-tensorflow-image" }, + { package = "notebooks", group = "jupyter-tensorflow-rocm-image" }, +], [ + { package = "notebooks", group = "elyra-trustyai" }, + { package = "notebooks", group = "jupyter-pytorch-image" }, +], [ + { package = "notebooks", group = "jupyter-tensorflow-image" }, + { package = "notebooks", group = "jupyter-tensorflow-rocm-image" }, + { package = "notebooks", group = "jupyter-trustyai-image" }, + { package = "notebooks", group = "pytorchcuda" }, + { package = "notebooks", group = "pytorchrocm" }, +], [ + { package = "notebooks", group = "jupyter-pytorch-rocm-image" }, + { package = "notebooks", group = "jupyter-tensorflow-rocm-image" }, + { package = "notebooks", group = "tensorflowcuda" }, +], [ + { package = "notebooks", group = "jupyter-pytorch-image" }, + { package = "notebooks", group = "trustyai" }, +], [ + { package = "notebooks", group = "datascience-preferred" }, + { package = "notebooks", group = "jupyter-trustyai-image" }, + { package = "notebooks", group = "tensorflowcuda" }, +], [ + { package = "notebooks", group = "jupyter-tensorflow-rocm-image" }, + { package = "notebooks", group = "pytorchcuda" }, + { package = "notebooks", group = "pytorchrocm" }, + { package = "notebooks", group = "tensorflowcuda" }, + { package = "notebooks", group = "trustyai" }, +], [ + { package = "notebooks", group = "elyra-trustyai" }, + { package = "notebooks", group = "jupyter-pytorch-rocm-image" }, +], [ + { package = "notebooks", group = "datascience-preferred" }, + { package = "notebooks", group = "datascience-trustyai" }, + { package = "notebooks", group = "jupyter-tensorflow-image" }, +], [ + { package = "notebooks", group = "jupyter-pytorch-image" }, + { package = "notebooks", group = "jupyter-pytorch-rocm-image" }, + { package = "notebooks", group = "jupyter-tensorflow-image" }, + { package = "notebooks", group = "tensorflowrocm" }, + { package = "notebooks", group = "trustyai" }, +], [ + { package = "notebooks", group = "jupyter-pytorch-rocm-image" }, + { package = "notebooks", group = "jupyter-tensorflow-image" }, + { package = "notebooks", group = "pytorchcuda" }, + { package = "notebooks", group = "tensorflowrocm" }, + { package = "notebooks", group = "trustyai" }, +], [ + { package = "notebooks", group = "elyra-trustyai" }, + { package = "notebooks", group = "jupyter-tensorflow-rocm-image" }, +], [ + { package = "notebooks", group = "jupyter-pytorch-rocm-image" }, + { package = "notebooks", group = "jupyter-tensorflow-image" }, + { package = "notebooks", group = "jupyter-trustyai-image" }, + { package = "notebooks", group = "pytorchcuda" }, + { package = "notebooks", group = "tensorflowrocm" }, +], [ + { package = "notebooks", group = "datascience-tensorflow" }, + { package = "notebooks", group = "jupyter-pytorch-rocm-image" }, + { package = "notebooks", group = "jupyter-trustyai-image" }, +], [ + { package = "notebooks", group = "datascience-base" }, + { package = "notebooks", group = "jupyter-tensorflow-rocm-image" }, + { package = "notebooks", group = "tensorflowcuda" }, +], [ + { package = "notebooks", group = "jupyter-pytorch-image" }, + { package = "notebooks", group = "jupyter-tensorflow-image" }, + { package = "notebooks", group = "jupyter-trustyai-image" }, +], [ + { package = "notebooks", group = "datascience-trustyai" }, + { package = "notebooks", group = "jupyter-pytorch-rocm-image" }, + { package = "notebooks", group = "jupyter-tensorflow-rocm-image" }, +], [ + { package = "notebooks", group = "jupyter-tensorflow-image" }, + { package = "notebooks", group = "jupyter-tensorflow-rocm-image" }, + { package = "notebooks", group = "jupyter-trustyai-image" }, +], [ + { package = "notebooks", group = "jupyter-pytorch-image" }, + { package = "notebooks", group = "jupyter-tensorflow-image" }, + { package = "notebooks", group = "jupyter-tensorflow-rocm-image" }, + { package = "notebooks", group = "pytorchrocm" }, + { package = "notebooks", group = "trustyai" }, +], [ + { package = "notebooks", group = "jupyter-trustyai-image" }, + { package = "notebooks", group = "tensorflowcuda" }, + { package = "notebooks", group = "tensorflowrocm" }, +], [ + { package = "notebooks", group = "jupyter-pytorch-rocm-image" }, + { package = "notebooks", group = "tensorflowcuda" }, + { package = "notebooks", group = "trustyai" }, +], [ + { package = "notebooks", group = "jupyter-tensorflow-image" }, + { package = "notebooks", group = "jupyter-trustyai-image" }, +], [ + { package = "notebooks", group = "jupyter-pytorch-rocm-image" }, + { package = "notebooks", group = "jupyter-tensorflow-image" }, + { package = "notebooks", group = "tensorflowrocm" }, +], [ + { package = "notebooks", group = "datascience-tensorflow" }, + { package = "notebooks", group = "jupyter-pytorch-image" }, + { package = "notebooks", group = "jupyter-trustyai-image" }, +], [ + { package = "notebooks", group = "jupyter-tensorflow-image" }, + { package = "notebooks", group = "jupyter-tensorflow-rocm-image" }, + { package = "notebooks", group = "pytorchcuda" }, + { package = "notebooks", group = "pytorchrocm" }, + { package = "notebooks", group = "trustyai" }, +], [ + { package = "notebooks", group = "jupyter-tensorflow-image" }, + { package = "notebooks", group = "jupyter-tensorflow-rocm-image" }, + { package = "notebooks", group = "tensorflowcuda" }, +], [ + { package = "notebooks", group = "datascience-trustyai" }, + { package = "notebooks", group = "jupyter-pytorch-image" }, + { package = "notebooks", group = "jupyter-tensorflow-rocm-image" }, +], [ + { package = "notebooks", group = "jupyter-pytorch-image" }, + { package = "notebooks", group = "jupyter-tensorflow-image" }, + { package = "notebooks", group = "jupyter-tensorflow-rocm-image" }, + { package = "notebooks", group = "jupyter-trustyai-image" }, + { package = "notebooks", group = "pytorchrocm" }, +], [ + { package = "notebooks", group = "jupyter-datascience-image" }, + { package = "notebooks", group = "jupyter-tensorflow-image" }, + { package = "notebooks", group = "jupyter-trustyai-image" }, +], [ + { package = "notebooks", group = "jupyter-pytorch-image" }, + { package = "notebooks", group = "jupyter-tensorflow-image" }, + { package = "notebooks", group = "pytorchrocm" }, + { package = "notebooks", group = "tensorflowrocm" }, + { package = "notebooks", group = "trustyai" }, +], [ + { package = "notebooks", group = "jupyter-pytorch-image" }, + { package = "notebooks", group = "jupyter-pytorch-rocm-image" }, + { package = "notebooks", group = "jupyter-tensorflow-rocm-image" }, + { package = "notebooks", group = "tensorflowcuda" }, + { package = "notebooks", group = "trustyai" }, +], [ + { package = "notebooks", group = "jupyter-tensorflow-image" }, + { package = "notebooks", group = "pytorchcuda" }, + { package = "notebooks", group = "pytorchrocm" }, + { package = "notebooks", group = "tensorflowrocm" }, + { package = "notebooks", group = "trustyai" }, +], [ + { package = "notebooks", group = "datascience-trustyai" }, + { package = "notebooks", group = "jupyter-trustyai-image" }, + { package = "notebooks", group = "tensorflowcuda" }, +], [ + { package = "notebooks", group = "datascience-base" }, + { package = "notebooks", group = "jupyter-tensorflow-image" }, + { package = "notebooks", group = "tensorflowrocm" }, +], [ + { package = "notebooks", group = "jupyter-pytorch-image" }, + { package = "notebooks", group = "jupyter-pytorch-rocm-image" }, + { package = "notebooks", group = "jupyter-tensorflow-image" }, + { package = "notebooks", group = "jupyter-trustyai-image" }, + { package = "notebooks", group = "tensorflowrocm" }, +]] -[[package]] -name = "allure-pytest" -version = "2.13.5" -source = { registry = "https://pypi.org/simple" } -dependencies = [ - { name = "allure-python-commons", marker = "sys_platform == 'darwin' or sys_platform == 'linux'" }, - { name = "pytest", marker = "sys_platform == 'darwin' or sys_platform == 'linux'" }, -] -sdist = { url = "https://files.pythonhosted.org/packages/2b/c3/829a300b72557e9327fa72692b62917dab3ad5bab678962ea84c066d4eef/allure-pytest-2.13.5.tar.gz", hash = "sha256:0ef8e1790c44a988db6b83c4d4f5e91451e2c4c8ea10601dfa88528d23afcf6e", size = 16976 } -wheels = [ - { url = "https://files.pythonhosted.org/packages/69/7b/430830ed7bf1ef078f9e55eb4b19cc059ef5310a20b5bd73eeb99e2c5ff1/allure_pytest-2.13.5-py3-none-any.whl", hash = "sha256:94130bac32964b78058e62cf4b815ad97a5ac82a065e6dd2d43abac2be7640fc", size = 11606 }, -] +[manifest] + +[[manifest.dependency-metadata]] +name = "tensorflow-rocm" +version = "2.14.0.600" +requires-dist = ["tensorflow-cpu-aws"] + +[[manifest.dependency-metadata]] +name = "tf2onnx" +version = "1.16.1" +requires-dist = ["protobuf"] [[package]] -name = "allure-python-commons" -version = "2.13.5" +name = "absl-py" +version = "2.3.0" source = { registry = "https://pypi.org/simple" } -dependencies = [ - { name = "attrs", marker = "sys_platform == 'darwin' or sys_platform == 'linux'" }, - { name = "pluggy", marker = "sys_platform == 'darwin' or sys_platform == 'linux'" }, -] -sdist = { url = "https://files.pythonhosted.org/packages/2d/96/9991a10dcd25b98c8c3e4c7916780f33f13a55a0efbe8c7ea96505271d91/allure-python-commons-2.13.5.tar.gz", hash = "sha256:a232e7955811f988e49a4c1dd6c16cce7e9b81d0ea0422b1e5654d3254e2caf3", size = 12934 } +sdist = { url = "https://files.pythonhosted.org/packages/03/15/18693af986560a5c3cc0b84a8046b536ffb2cdb536e03cce897f2759e284/absl_py-2.3.0.tar.gz", hash = "sha256:d96fda5c884f1b22178852f30ffa85766d50b99e00775ea626c23304f582fc4f", size = 116400, upload-time = "2025-05-27T09:15:50.143Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/d0/18/79a66d6adc301281803398f7288583dff8d1d3f2672c07ffab03ee12c7cd/allure_python_commons-2.13.5-py3-none-any.whl", hash = "sha256:8b0e837b6e32d810adec563f49e1d04127a5b6770e0232065b7cb09b9953980d", size = 15715 }, + { url = "https://files.pythonhosted.org/packages/87/04/9d75e1d3bb4ab8ec67ff10919476ccdee06c098bcfcf3a352da5f985171d/absl_py-2.3.0-py3-none-any.whl", hash = "sha256:9824a48b654a306168f63e0d97714665f8490b8d89ec7bf2efc24bf67cf579b3", size = 135657, upload-time = "2025-05-27T09:15:48.742Z" }, ] [[package]] -name = "annotated-types" -version = "0.7.0" +name = "accelerate" +version = "1.5.2" source = { registry = "https://pypi.org/simple" } -sdist = { url = "https://files.pythonhosted.org/packages/ee/67/531ea369ba64dcff5ec9c3402f9f51bf748cec26dde048a2f973a4eea7f5/annotated_types-0.7.0.tar.gz", hash = "sha256:aff07c09a53a08bc8cfccb9c85b05f1aa9a2a6f23728d790723543408344ce89", size = 16081 } +dependencies = [ + { name = "huggingface-hub", marker = "sys_platform == 'linux'" }, + { name = "numpy", version = "1.24.4", source = { registry = "https://pypi.org/simple" }, marker = "sys_platform == 'linux'" }, + { name = "packaging", marker = "sys_platform == 'linux'" }, + { name = "psutil", marker = "sys_platform == 'linux'" }, + { name = "pyyaml", marker = "sys_platform == 'linux'" }, + { name = "safetensors", marker = "sys_platform == 'linux'" }, + { name = "torch", version = "2.6.0", source = { registry = "https://pypi.org/simple" }, marker = "(sys_platform == 'linux' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai')" }, + { name = "torch", version = "2.6.0+cu126", source = { registry = "https://download.pytorch.org/whl/cu126" }, marker = "(sys_platform == 'linux' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-trustyai')" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/a9/4c/a61132924da12cef62a88c04b5825246ab83dcc1bae6291d098cfcb0b72d/accelerate-1.5.2.tar.gz", hash = "sha256:a1cf39473edc0e42772a9d9a18c9eb1ce8ffd9e1719dc0ab80670f5c1fd4dc43", size = 352341, upload-time = "2025-03-14T14:14:55.575Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/78/b6/6307fbef88d9b5ee7421e68d78a9f162e0da4900bc5f5793f6d3d0e34fb8/annotated_types-0.7.0-py3-none-any.whl", hash = "sha256:1f02e8b43a8fbbc3f3e0d4f0f4bfc8131bcb4eebe8849b8e5c773f3a1c582a53", size = 13643 }, + { url = "https://files.pythonhosted.org/packages/70/83/167d4b638bb758a966828eb8d23c5e7047825edfdf768ff5f4fb01440063/accelerate-1.5.2-py3-none-any.whl", hash = "sha256:68a3b272f6a6ffebb457bdc138581a2bf52efad6a5e0214dc46675f3edd98792", size = 345146, upload-time = "2025-03-14T14:14:53.777Z" }, ] [[package]] -name = "asttokens" -version = "3.0.0" +name = "aiohappyeyeballs" +version = "2.6.1" source = { registry = "https://pypi.org/simple" } -sdist = { url = "https://files.pythonhosted.org/packages/4a/e7/82da0a03e7ba5141f05cce0d302e6eed121ae055e0456ca228bf693984bc/asttokens-3.0.0.tar.gz", hash = "sha256:0dcd8baa8d62b0c1d118b399b2ddba3c4aff271d0d7a9e0d4c1681c79035bbc7", size = 61978 } +sdist = { url = "https://files.pythonhosted.org/packages/26/30/f84a107a9c4331c14b2b586036f40965c128aa4fee4dda5d3d51cb14ad54/aiohappyeyeballs-2.6.1.tar.gz", hash = "sha256:c3f9d0113123803ccadfdf3f0faa505bc78e6a72d1cc4806cbd719826e943558", size = 22760, upload-time = "2025-03-12T01:42:48.764Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/25/8a/c46dcc25341b5bce5472c718902eb3d38600a903b14fa6aeecef3f21a46f/asttokens-3.0.0-py3-none-any.whl", hash = "sha256:e3078351a059199dd5138cb1c706e6430c05eff2ff136af5eb4790f9d28932e2", size = 26918 }, + { url = "https://files.pythonhosted.org/packages/0f/15/5bf3b99495fb160b63f95972b81750f18f7f4e02ad051373b669d17d44f2/aiohappyeyeballs-2.6.1-py3-none-any.whl", hash = "sha256:f349ba8f4b75cb25c99c5c2d84e997e485204d2902a9597802b0371f09331fb8", size = 15265, upload-time = "2025-03-12T01:42:47.083Z" }, ] [[package]] -name = "attrs" -version = "25.1.0" +name = "aiohttp" +version = "3.12.13" source = { registry = "https://pypi.org/simple" } -sdist = { url = "https://files.pythonhosted.org/packages/49/7c/fdf464bcc51d23881d110abd74b512a42b3d5d376a55a831b44c603ae17f/attrs-25.1.0.tar.gz", hash = "sha256:1c97078a80c814273a76b2a298a932eb681c87415c11dee0a6921de7f1b02c3e", size = 810562 } +dependencies = [ + { name = "aiohappyeyeballs", marker = "sys_platform == 'linux'" }, + { name = "aiosignal", marker = "sys_platform == 'linux'" }, + { name = "attrs", marker = "sys_platform == 'linux'" }, + { name = "frozenlist", marker = "sys_platform == 'linux'" }, + { name = "multidict", marker = "sys_platform == 'linux'" }, + { name = "propcache", marker = "sys_platform == 'linux'" }, + { name = "yarl", marker = "sys_platform == 'linux'" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/42/6e/ab88e7cb2a4058bed2f7870276454f85a7c56cd6da79349eb314fc7bbcaa/aiohttp-3.12.13.tar.gz", hash = "sha256:47e2da578528264a12e4e3dd8dd72a7289e5f812758fe086473fab037a10fcce", size = 7819160, upload-time = "2025-06-14T15:15:41.354Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/fc/30/d4986a882011f9df997a55e6becd864812ccfcd821d64aac8570ee39f719/attrs-25.1.0-py3-none-any.whl", hash = "sha256:c75a69e28a550a7e93789579c22aa26b0f5b83b75dc4e08fe092980051e1090a", size = 63152 }, + { url = "https://files.pythonhosted.org/packages/6a/65/5566b49553bf20ffed6041c665a5504fb047cefdef1b701407b8ce1a47c4/aiohttp-3.12.13-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:7c229b1437aa2576b99384e4be668af1db84b31a45305d02f61f5497cfa6f60c", size = 709401, upload-time = "2025-06-14T15:13:30.774Z" }, + { url = "https://files.pythonhosted.org/packages/14/b5/48e4cc61b54850bdfafa8fe0b641ab35ad53d8e5a65ab22b310e0902fa42/aiohttp-3.12.13-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:04076d8c63471e51e3689c93940775dc3d12d855c0c80d18ac5a1c68f0904358", size = 481669, upload-time = "2025-06-14T15:13:32.316Z" }, + { url = "https://files.pythonhosted.org/packages/04/4f/e3f95c8b2a20a0437d51d41d5ccc4a02970d8ad59352efb43ea2841bd08e/aiohttp-3.12.13-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:55683615813ce3601640cfaa1041174dc956d28ba0511c8cbd75273eb0587014", size = 469933, upload-time = "2025-06-14T15:13:34.104Z" }, + { url = "https://files.pythonhosted.org/packages/41/c9/c5269f3b6453b1cfbd2cfbb6a777d718c5f086a3727f576c51a468b03ae2/aiohttp-3.12.13-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:921bc91e602d7506d37643e77819cb0b840d4ebb5f8d6408423af3d3bf79a7b7", size = 1740128, upload-time = "2025-06-14T15:13:35.604Z" }, + { url = "https://files.pythonhosted.org/packages/6f/49/a3f76caa62773d33d0cfaa842bdf5789a78749dbfe697df38ab1badff369/aiohttp-3.12.13-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.manylinux_2_31_armv7l.whl", hash = "sha256:e72d17fe0974ddeae8ed86db297e23dba39c7ac36d84acdbb53df2e18505a013", size = 1688796, upload-time = "2025-06-14T15:13:37.125Z" }, + { url = "https://files.pythonhosted.org/packages/ad/e4/556fccc4576dc22bf18554b64cc873b1a3e5429a5bdb7bbef7f5d0bc7664/aiohttp-3.12.13-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:0653d15587909a52e024a261943cf1c5bdc69acb71f411b0dd5966d065a51a47", size = 1787589, upload-time = "2025-06-14T15:13:38.745Z" }, + { url = "https://files.pythonhosted.org/packages/b9/3d/d81b13ed48e1a46734f848e26d55a7391708421a80336e341d2aef3b6db2/aiohttp-3.12.13-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:a77b48997c66722c65e157c06c74332cdf9c7ad00494b85ec43f324e5c5a9b9a", size = 1826635, upload-time = "2025-06-14T15:13:40.733Z" }, + { url = "https://files.pythonhosted.org/packages/75/a5/472e25f347da88459188cdaadd1f108f6292f8a25e62d226e63f860486d1/aiohttp-3.12.13-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d6946bae55fd36cfb8e4092c921075cde029c71c7cb571d72f1079d1e4e013bc", size = 1729095, upload-time = "2025-06-14T15:13:42.312Z" }, + { url = "https://files.pythonhosted.org/packages/b9/fe/322a78b9ac1725bfc59dfc301a5342e73d817592828e4445bd8f4ff83489/aiohttp-3.12.13-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:4f95db8c8b219bcf294a53742c7bda49b80ceb9d577c8e7aa075612b7f39ffb7", size = 1666170, upload-time = "2025-06-14T15:13:44.884Z" }, + { url = "https://files.pythonhosted.org/packages/7a/77/ec80912270e231d5e3839dbd6c065472b9920a159ec8a1895cf868c2708e/aiohttp-3.12.13-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:03d5eb3cfb4949ab4c74822fb3326cd9655c2b9fe22e4257e2100d44215b2e2b", size = 1714444, upload-time = "2025-06-14T15:13:46.401Z" }, + { url = "https://files.pythonhosted.org/packages/21/b2/fb5aedbcb2b58d4180e58500e7c23ff8593258c27c089abfbcc7db65bd40/aiohttp-3.12.13-cp311-cp311-musllinux_1_2_armv7l.whl", hash = "sha256:6383dd0ffa15515283c26cbf41ac8e6705aab54b4cbb77bdb8935a713a89bee9", size = 1709604, upload-time = "2025-06-14T15:13:48.377Z" }, + { url = "https://files.pythonhosted.org/packages/e3/15/a94c05f7c4dc8904f80b6001ad6e07e035c58a8ebfcc15e6b5d58500c858/aiohttp-3.12.13-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:6548a411bc8219b45ba2577716493aa63b12803d1e5dc70508c539d0db8dbf5a", size = 1689786, upload-time = "2025-06-14T15:13:50.401Z" }, + { url = "https://files.pythonhosted.org/packages/1d/fd/0d2e618388f7a7a4441eed578b626bda9ec6b5361cd2954cfc5ab39aa170/aiohttp-3.12.13-cp311-cp311-musllinux_1_2_ppc64le.whl", hash = "sha256:81b0fcbfe59a4ca41dc8f635c2a4a71e63f75168cc91026c61be665945739e2d", size = 1783389, upload-time = "2025-06-14T15:13:51.945Z" }, + { url = "https://files.pythonhosted.org/packages/a6/6b/6986d0c75996ef7e64ff7619b9b7449b1d1cbbe05c6755e65d92f1784fe9/aiohttp-3.12.13-cp311-cp311-musllinux_1_2_s390x.whl", hash = "sha256:6a83797a0174e7995e5edce9dcecc517c642eb43bc3cba296d4512edf346eee2", size = 1803853, upload-time = "2025-06-14T15:13:53.533Z" }, + { url = "https://files.pythonhosted.org/packages/21/65/cd37b38f6655d95dd07d496b6d2f3924f579c43fd64b0e32b547b9c24df5/aiohttp-3.12.13-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:a5734d8469a5633a4e9ffdf9983ff7cdb512524645c7a3d4bc8a3de45b935ac3", size = 1716909, upload-time = "2025-06-14T15:13:55.148Z" }, + { url = "https://files.pythonhosted.org/packages/fd/20/2de7012427dc116714c38ca564467f6143aec3d5eca3768848d62aa43e62/aiohttp-3.12.13-cp311-cp311-win32.whl", hash = "sha256:fef8d50dfa482925bb6b4c208b40d8e9fa54cecba923dc65b825a72eed9a5dbd", size = 427036, upload-time = "2025-06-14T15:13:57.076Z" }, + { url = "https://files.pythonhosted.org/packages/f8/b6/98518bcc615ef998a64bef371178b9afc98ee25895b4f476c428fade2220/aiohttp-3.12.13-cp311-cp311-win_amd64.whl", hash = "sha256:9a27da9c3b5ed9d04c36ad2df65b38a96a37e9cfba6f1381b842d05d98e6afe9", size = 451427, upload-time = "2025-06-14T15:13:58.505Z" }, + { url = "https://files.pythonhosted.org/packages/b4/6a/ce40e329788013cd190b1d62bbabb2b6a9673ecb6d836298635b939562ef/aiohttp-3.12.13-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:0aa580cf80558557285b49452151b9c69f2fa3ad94c5c9e76e684719a8791b73", size = 700491, upload-time = "2025-06-14T15:14:00.048Z" }, + { url = "https://files.pythonhosted.org/packages/28/d9/7150d5cf9163e05081f1c5c64a0cdf3c32d2f56e2ac95db2a28fe90eca69/aiohttp-3.12.13-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:b103a7e414b57e6939cc4dece8e282cfb22043efd0c7298044f6594cf83ab347", size = 475104, upload-time = "2025-06-14T15:14:01.691Z" }, + { url = "https://files.pythonhosted.org/packages/f8/91/d42ba4aed039ce6e449b3e2db694328756c152a79804e64e3da5bc19dffc/aiohttp-3.12.13-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:78f64e748e9e741d2eccff9597d09fb3cd962210e5b5716047cbb646dc8fe06f", size = 467948, upload-time = "2025-06-14T15:14:03.561Z" }, + { url = "https://files.pythonhosted.org/packages/99/3b/06f0a632775946981d7c4e5a865cddb6e8dfdbaed2f56f9ade7bb4a1039b/aiohttp-3.12.13-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:29c955989bf4c696d2ededc6b0ccb85a73623ae6e112439398935362bacfaaf6", size = 1714742, upload-time = "2025-06-14T15:14:05.558Z" }, + { url = "https://files.pythonhosted.org/packages/92/a6/2552eebad9ec5e3581a89256276009e6a974dc0793632796af144df8b740/aiohttp-3.12.13-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.manylinux_2_31_armv7l.whl", hash = "sha256:d640191016763fab76072c87d8854a19e8e65d7a6fcfcbf017926bdbbb30a7e5", size = 1697393, upload-time = "2025-06-14T15:14:07.194Z" }, + { url = "https://files.pythonhosted.org/packages/d8/9f/bd08fdde114b3fec7a021381b537b21920cdd2aa29ad48c5dffd8ee314f1/aiohttp-3.12.13-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:4dc507481266b410dede95dd9f26c8d6f5a14315372cc48a6e43eac652237d9b", size = 1752486, upload-time = "2025-06-14T15:14:08.808Z" }, + { url = "https://files.pythonhosted.org/packages/f7/e1/affdea8723aec5bd0959171b5490dccd9a91fcc505c8c26c9f1dca73474d/aiohttp-3.12.13-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:8a94daa873465d518db073bd95d75f14302e0208a08e8c942b2f3f1c07288a75", size = 1798643, upload-time = "2025-06-14T15:14:10.767Z" }, + { url = "https://files.pythonhosted.org/packages/f3/9d/666d856cc3af3a62ae86393baa3074cc1d591a47d89dc3bf16f6eb2c8d32/aiohttp-3.12.13-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:177f52420cde4ce0bb9425a375d95577fe082cb5721ecb61da3049b55189e4e6", size = 1718082, upload-time = "2025-06-14T15:14:12.38Z" }, + { url = "https://files.pythonhosted.org/packages/f3/ce/3c185293843d17be063dada45efd2712bb6bf6370b37104b4eda908ffdbd/aiohttp-3.12.13-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:0f7df1f620ec40f1a7fbcb99ea17d7326ea6996715e78f71a1c9a021e31b96b8", size = 1633884, upload-time = "2025-06-14T15:14:14.415Z" }, + { url = "https://files.pythonhosted.org/packages/3a/5b/f3413f4b238113be35dfd6794e65029250d4b93caa0974ca572217745bdb/aiohttp-3.12.13-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:3062d4ad53b36e17796dce1c0d6da0ad27a015c321e663657ba1cc7659cfc710", size = 1694943, upload-time = "2025-06-14T15:14:16.48Z" }, + { url = "https://files.pythonhosted.org/packages/82/c8/0e56e8bf12081faca85d14a6929ad5c1263c146149cd66caa7bc12255b6d/aiohttp-3.12.13-cp312-cp312-musllinux_1_2_armv7l.whl", hash = "sha256:8605e22d2a86b8e51ffb5253d9045ea73683d92d47c0b1438e11a359bdb94462", size = 1716398, upload-time = "2025-06-14T15:14:18.589Z" }, + { url = "https://files.pythonhosted.org/packages/ea/f3/33192b4761f7f9b2f7f4281365d925d663629cfaea093a64b658b94fc8e1/aiohttp-3.12.13-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:54fbbe6beafc2820de71ece2198458a711e224e116efefa01b7969f3e2b3ddae", size = 1657051, upload-time = "2025-06-14T15:14:20.223Z" }, + { url = "https://files.pythonhosted.org/packages/5e/0b/26ddd91ca8f84c48452431cb4c5dd9523b13bc0c9766bda468e072ac9e29/aiohttp-3.12.13-cp312-cp312-musllinux_1_2_ppc64le.whl", hash = "sha256:050bd277dfc3768b606fd4eae79dd58ceda67d8b0b3c565656a89ae34525d15e", size = 1736611, upload-time = "2025-06-14T15:14:21.988Z" }, + { url = "https://files.pythonhosted.org/packages/c3/8d/e04569aae853302648e2c138a680a6a2f02e374c5b6711732b29f1e129cc/aiohttp-3.12.13-cp312-cp312-musllinux_1_2_s390x.whl", hash = "sha256:2637a60910b58f50f22379b6797466c3aa6ae28a6ab6404e09175ce4955b4e6a", size = 1764586, upload-time = "2025-06-14T15:14:23.979Z" }, + { url = "https://files.pythonhosted.org/packages/ac/98/c193c1d1198571d988454e4ed75adc21c55af247a9fda08236602921c8c8/aiohttp-3.12.13-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:e986067357550d1aaa21cfe9897fa19e680110551518a5a7cf44e6c5638cb8b5", size = 1724197, upload-time = "2025-06-14T15:14:25.692Z" }, + { url = "https://files.pythonhosted.org/packages/e7/9e/07bb8aa11eec762c6b1ff61575eeeb2657df11ab3d3abfa528d95f3e9337/aiohttp-3.12.13-cp312-cp312-win32.whl", hash = "sha256:ac941a80aeea2aaae2875c9500861a3ba356f9ff17b9cb2dbfb5cbf91baaf5bf", size = 421771, upload-time = "2025-06-14T15:14:27.364Z" }, + { url = "https://files.pythonhosted.org/packages/52/66/3ce877e56ec0813069cdc9607cd979575859c597b6fb9b4182c6d5f31886/aiohttp-3.12.13-cp312-cp312-win_amd64.whl", hash = "sha256:671f41e6146a749b6c81cb7fd07f5a8356d46febdaaaf07b0e774ff04830461e", size = 447869, upload-time = "2025-06-14T15:14:29.05Z" }, ] [[package]] -name = "bcrypt" -version = "4.2.1" +name = "aiohttp-cors" +version = "0.8.1" source = { registry = "https://pypi.org/simple" } -sdist = { url = "https://files.pythonhosted.org/packages/56/8c/dd696962612e4cd83c40a9e6b3db77bfe65a830f4b9af44098708584686c/bcrypt-4.2.1.tar.gz", hash = "sha256:6765386e3ab87f569b276988742039baab087b2cdb01e809d74e74503c2faafe", size = 24427 } -wheels = [ - { url = "https://files.pythonhosted.org/packages/bc/ca/e17b08c523adb93d5f07a226b2bd45a7c6e96b359e31c1e99f9db58cb8c3/bcrypt-4.2.1-cp37-abi3-macosx_10_12_universal2.whl", hash = "sha256:1340411a0894b7d3ef562fb233e4b6ed58add185228650942bdc885362f32c17", size = 489982 }, - { url = "https://files.pythonhosted.org/packages/6a/be/e7c6e0fd6087ee8fc6d77d8d9e817e9339d879737509019b9a9012a1d96f/bcrypt-4.2.1-cp37-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b1ee315739bc8387aa36ff127afc99120ee452924e0df517a8f3e4c0187a0f5f", size = 273108 }, - { url = "https://files.pythonhosted.org/packages/d6/53/ac084b7d985aee1a5f2b086d501f550862596dbf73220663b8c17427e7f2/bcrypt-4.2.1-cp37-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8dbd0747208912b1e4ce730c6725cb56c07ac734b3629b60d4398f082ea718ad", size = 278733 }, - { url = "https://files.pythonhosted.org/packages/8e/ab/b8710a3d6231c587e575ead0b1c45bb99f5454f9f579c9d7312c17b069cc/bcrypt-4.2.1-cp37-abi3-manylinux_2_28_aarch64.whl", hash = "sha256:aaa2e285be097050dba798d537b6efd9b698aa88eef52ec98d23dcd6d7cf6fea", size = 273856 }, - { url = "https://files.pythonhosted.org/packages/9d/e5/2fd1ea6395358ffdfd4afe370d5b52f71408f618f781772a48971ef3b92b/bcrypt-4.2.1-cp37-abi3-manylinux_2_28_x86_64.whl", hash = "sha256:76d3e352b32f4eeb34703370e370997065d28a561e4a18afe4fef07249cb4396", size = 279067 }, - { url = "https://files.pythonhosted.org/packages/4e/ef/f2cb7a0f7e1ed800a604f8ab256fb0afcf03c1540ad94ff771ce31e794aa/bcrypt-4.2.1-cp37-abi3-musllinux_1_1_aarch64.whl", hash = "sha256:b7703ede632dc945ed1172d6f24e9f30f27b1b1a067f32f68bf169c5f08d0425", size = 306851 }, - { url = "https://files.pythonhosted.org/packages/de/cb/578b0023c6a5ca16a177b9044ba6bd6032277bd3ef020fb863eccd22e49b/bcrypt-4.2.1-cp37-abi3-musllinux_1_1_x86_64.whl", hash = "sha256:89df2aea2c43be1e1fa066df5f86c8ce822ab70a30e4c210968669565c0f4685", size = 310793 }, - { url = "https://files.pythonhosted.org/packages/98/bc/9d501ee9d754f63d4b1086b64756c284facc3696de9b556c146279a124a5/bcrypt-4.2.1-cp37-abi3-musllinux_1_2_aarch64.whl", hash = "sha256:04e56e3fe8308a88b77e0afd20bec516f74aecf391cdd6e374f15cbed32783d6", size = 320957 }, - { url = "https://files.pythonhosted.org/packages/a1/25/2ec4ce5740abc43182bfc064b9acbbf5a493991246985e8b2bfe231ead64/bcrypt-4.2.1-cp37-abi3-musllinux_1_2_x86_64.whl", hash = "sha256:cfdf3d7530c790432046c40cda41dfee8c83e29482e6a604f8930b9930e94139", size = 339958 }, - { url = "https://files.pythonhosted.org/packages/4a/57/23b46933206daf5384b5397d9878746d2249fe9d45efaa8e1467c87d3048/bcrypt-4.2.1-cp39-abi3-macosx_10_12_universal2.whl", hash = "sha256:8ad2f4528cbf0febe80e5a3a57d7a74e6635e41af1ea5675282a33d769fba413", size = 489842 }, - { url = "https://files.pythonhosted.org/packages/fd/28/3ea8a39ddd4938b6c6b6136816d72ba5e659e2d82b53d843c8c53455ac4d/bcrypt-4.2.1-cp39-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:909faa1027900f2252a9ca5dfebd25fc0ef1417943824783d1c8418dd7d6df4a", size = 272500 }, - { url = "https://files.pythonhosted.org/packages/77/7f/b43622999f5d4de06237a195ac5501ac83516adf571b907228cd14bac8fe/bcrypt-4.2.1-cp39-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:cde78d385d5e93ece5479a0a87f73cd6fa26b171c786a884f955e165032b262c", size = 278368 }, - { url = "https://files.pythonhosted.org/packages/50/68/f2e3959014b4d8874c747e6e171d46d3e63a3a39aaca8417a8d837eda0a8/bcrypt-4.2.1-cp39-abi3-manylinux_2_28_aarch64.whl", hash = "sha256:533e7f3bcf2f07caee7ad98124fab7499cb3333ba2274f7a36cf1daee7409d99", size = 273335 }, - { url = "https://files.pythonhosted.org/packages/d6/c3/4b4bad4da852924427c651589d464ad1aa624f94dd904ddda8493b0a35e5/bcrypt-4.2.1-cp39-abi3-manylinux_2_28_x86_64.whl", hash = "sha256:687cf30e6681eeda39548a93ce9bfbb300e48b4d445a43db4298d2474d2a1e54", size = 278614 }, - { url = "https://files.pythonhosted.org/packages/6e/5a/ee107961e84c41af2ac201d0460f962b6622ff391255ffd46429e9e09dc1/bcrypt-4.2.1-cp39-abi3-musllinux_1_1_aarch64.whl", hash = "sha256:041fa0155c9004eb98a232d54da05c0b41d4b8e66b6fc3cb71b4b3f6144ba837", size = 306464 }, - { url = "https://files.pythonhosted.org/packages/5c/72/916e14fa12d2b1d1fc6c26ea195337419da6dd23d0bf53ac61ef3739e5c5/bcrypt-4.2.1-cp39-abi3-musllinux_1_1_x86_64.whl", hash = "sha256:f85b1ffa09240c89aa2e1ae9f3b1c687104f7b2b9d2098da4e923f1b7082d331", size = 310674 }, - { url = "https://files.pythonhosted.org/packages/97/92/3dc76d8bfa23300591eec248e950f85bd78eb608c96bd4747ce4cc06acdb/bcrypt-4.2.1-cp39-abi3-musllinux_1_2_aarch64.whl", hash = "sha256:c6f5fa3775966cca251848d4d5393ab016b3afed251163c1436fefdec3b02c84", size = 320577 }, - { url = "https://files.pythonhosted.org/packages/5d/ab/a6c0da5c2cf86600f74402a72b06dfe365e1a1d30783b1bbeec460fd57d1/bcrypt-4.2.1-cp39-abi3-musllinux_1_2_x86_64.whl", hash = "sha256:807261df60a8b1ccd13e6599c779014a362ae4e795f5c59747f60208daddd96d", size = 339836 }, +dependencies = [ + { name = "aiohttp", marker = "sys_platform == 'linux'" }, ] - -[[package]] -name = "cachetools" -version = "5.5.2" -source = { registry = "https://pypi.org/simple" } -sdist = { url = "https://files.pythonhosted.org/packages/6c/81/3747dad6b14fa2cf53fcf10548cf5aea6913e96fab41a3c198676f8948a5/cachetools-5.5.2.tar.gz", hash = "sha256:1a661caa9175d26759571b2e19580f9d6393969e5dfca11fdb1f947a23e640d4", size = 28380 } +sdist = { url = "https://files.pythonhosted.org/packages/6f/6d/d89e846a5444b3d5eb8985a6ddb0daef3774928e1bfbce8e84ec97b0ffa7/aiohttp_cors-0.8.1.tar.gz", hash = "sha256:ccacf9cb84b64939ea15f859a146af1f662a6b1d68175754a07315e305fb1403", size = 38626, upload-time = "2025-03-31T14:16:20.048Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/72/76/20fa66124dbe6be5cafeb312ece67de6b61dd91a0247d1ea13db4ebb33c2/cachetools-5.5.2-py3-none-any.whl", hash = "sha256:d26a22bcc62eb95c3beabd9f1ee5e820d3d2704fe2967cbe350e20c8ffcd3f0a", size = 10080 }, + { url = "https://files.pythonhosted.org/packages/98/3b/40a68de458904bcc143622015fff2352b6461cd92fd66d3527bf1c6f5716/aiohttp_cors-0.8.1-py3-none-any.whl", hash = "sha256:3180cf304c5c712d626b9162b195b1db7ddf976a2a25172b35bb2448b890a80d", size = 25231, upload-time = "2025-03-31T14:16:18.478Z" }, ] [[package]] -name = "certifi" -version = "2025.1.31" +name = "aiosignal" +version = "1.3.2" source = { registry = "https://pypi.org/simple" } -sdist = { url = "https://files.pythonhosted.org/packages/1c/ab/c9f1e32b7b1bf505bf26f0ef697775960db7932abeb7b516de930ba2705f/certifi-2025.1.31.tar.gz", hash = "sha256:3d5da6925056f6f18f119200434a4780a94263f10d1c21d032a6f6b2baa20651", size = 167577 } +dependencies = [ + { name = "frozenlist", marker = "sys_platform == 'linux'" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/ba/b5/6d55e80f6d8a08ce22b982eafa278d823b541c925f11ee774b0b9c43473d/aiosignal-1.3.2.tar.gz", hash = "sha256:a8c255c66fafb1e499c9351d0bf32ff2d8a0321595ebac3b93713656d2436f54", size = 19424, upload-time = "2024-12-13T17:10:40.86Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/38/fc/bce832fd4fd99766c04d1ee0eead6b0ec6486fb100ae5e74c1d91292b982/certifi-2025.1.31-py3-none-any.whl", hash = "sha256:ca78db4565a652026a4db2bcdf68f2fb589ea80d0be70e03929ed730746b84fe", size = 166393 }, + { url = "https://files.pythonhosted.org/packages/ec/6a/bc7e17a3e87a2985d3e8f4da4cd0f481060eb78fb08596c42be62c90a4d9/aiosignal-1.3.2-py2.py3-none-any.whl", hash = "sha256:45cde58e409a301715980c2b01d0c28bdde3770d8290b5eb2173759d9acb31a5", size = 7597, upload-time = "2024-12-13T17:10:38.469Z" }, ] [[package]] -name = "cffi" -version = "1.17.1" +name = "allure-pytest" +version = "2.13.5" source = { registry = "https://pypi.org/simple" } dependencies = [ - { name = "pycparser", marker = "sys_platform == 'darwin' or sys_platform == 'linux'" }, + { name = "allure-python-commons", marker = "sys_platform == 'linux' or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai')" }, + { name = "pytest", marker = "sys_platform == 'linux' or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai')" }, ] -sdist = { url = "https://files.pythonhosted.org/packages/fc/97/c783634659c2920c3fc70419e3af40972dbaf758daa229a7d6ea6135c90d/cffi-1.17.1.tar.gz", hash = "sha256:1c39c6016c32bc48dd54561950ebd6836e1670f2ae46128f67cf49e789c52824", size = 516621 } +sdist = { url = "https://files.pythonhosted.org/packages/2b/c3/829a300b72557e9327fa72692b62917dab3ad5bab678962ea84c066d4eef/allure-pytest-2.13.5.tar.gz", hash = "sha256:0ef8e1790c44a988db6b83c4d4f5e91451e2c4c8ea10601dfa88528d23afcf6e", size = 16976, upload-time = "2024-04-01T16:51:19.279Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/5a/84/e94227139ee5fb4d600a7a4927f322e1d4aea6fdc50bd3fca8493caba23f/cffi-1.17.1-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:805b4371bf7197c329fcb3ead37e710d1bca9da5d583f5073b799d5c5bd1eee4", size = 183178 }, - { url = "https://files.pythonhosted.org/packages/da/ee/fb72c2b48656111c4ef27f0f91da355e130a923473bf5ee75c5643d00cca/cffi-1.17.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:733e99bc2df47476e3848417c5a4540522f234dfd4ef3ab7fafdf555b082ec0c", size = 178840 }, - { url = "https://files.pythonhosted.org/packages/cc/b6/db007700f67d151abadf508cbfd6a1884f57eab90b1bb985c4c8c02b0f28/cffi-1.17.1-cp312-cp312-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:1257bdabf294dceb59f5e70c64a3e2f462c30c7ad68092d01bbbfb1c16b1ba36", size = 454803 }, - { url = "https://files.pythonhosted.org/packages/1a/df/f8d151540d8c200eb1c6fba8cd0dfd40904f1b0682ea705c36e6c2e97ab3/cffi-1.17.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:da95af8214998d77a98cc14e3a3bd00aa191526343078b530ceb0bd710fb48a5", size = 478850 }, - { url = "https://files.pythonhosted.org/packages/28/c0/b31116332a547fd2677ae5b78a2ef662dfc8023d67f41b2a83f7c2aa78b1/cffi-1.17.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:d63afe322132c194cf832bfec0dc69a99fb9bb6bbd550f161a49e9e855cc78ff", size = 485729 }, - { url = "https://files.pythonhosted.org/packages/91/2b/9a1ddfa5c7f13cab007a2c9cc295b70fbbda7cb10a286aa6810338e60ea1/cffi-1.17.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:f79fc4fc25f1c8698ff97788206bb3c2598949bfe0fef03d299eb1b5356ada99", size = 471256 }, - { url = "https://files.pythonhosted.org/packages/b2/d5/da47df7004cb17e4955df6a43d14b3b4ae77737dff8bf7f8f333196717bf/cffi-1.17.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b62ce867176a75d03a665bad002af8e6d54644fad99a3c70905c543130e39d93", size = 479424 }, - { url = "https://files.pythonhosted.org/packages/0b/ac/2a28bcf513e93a219c8a4e8e125534f4f6db03e3179ba1c45e949b76212c/cffi-1.17.1-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:386c8bf53c502fff58903061338ce4f4950cbdcb23e2902d86c0f722b786bbe3", size = 484568 }, - { url = "https://files.pythonhosted.org/packages/d4/38/ca8a4f639065f14ae0f1d9751e70447a261f1a30fa7547a828ae08142465/cffi-1.17.1-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:4ceb10419a9adf4460ea14cfd6bc43d08701f0835e979bf821052f1805850fe8", size = 488736 }, + { url = "https://files.pythonhosted.org/packages/69/7b/430830ed7bf1ef078f9e55eb4b19cc059ef5310a20b5bd73eeb99e2c5ff1/allure_pytest-2.13.5-py3-none-any.whl", hash = "sha256:94130bac32964b78058e62cf4b815ad97a5ac82a065e6dd2d43abac2be7640fc", size = 11606, upload-time = "2024-04-01T16:51:17.882Z" }, ] [[package]] -name = "cfgv" -version = "3.4.0" +name = "allure-python-commons" +version = "2.13.5" source = { registry = "https://pypi.org/simple" } -sdist = { url = "https://files.pythonhosted.org/packages/11/74/539e56497d9bd1d484fd863dd69cbbfa653cd2aa27abfe35653494d85e94/cfgv-3.4.0.tar.gz", hash = "sha256:e52591d4c5f5dead8e0f673fb16db7949d2cfb3f7da4582893288f0ded8fe560", size = 7114 } +dependencies = [ + { name = "attrs", marker = "sys_platform == 'linux' or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai')" }, + { name = "pluggy", marker = "sys_platform == 'linux' or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai')" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/2d/96/9991a10dcd25b98c8c3e4c7916780f33f13a55a0efbe8c7ea96505271d91/allure-python-commons-2.13.5.tar.gz", hash = "sha256:a232e7955811f988e49a4c1dd6c16cce7e9b81d0ea0422b1e5654d3254e2caf3", size = 12934, upload-time = "2024-04-01T16:51:03.711Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/c5/55/51844dd50c4fc7a33b653bfaba4c2456f06955289ca770a5dbd5fd267374/cfgv-3.4.0-py2.py3-none-any.whl", hash = "sha256:b7265b1f29fd3316bfcd2b330d63d024f2bfd8bcb8b0272f8e19a504856c48f9", size = 7249 }, + { url = "https://files.pythonhosted.org/packages/d0/18/79a66d6adc301281803398f7288583dff8d1d3f2672c07ffab03ee12c7cd/allure_python_commons-2.13.5-py3-none-any.whl", hash = "sha256:8b0e837b6e32d810adec563f49e1d04127a5b6770e0232065b7cb09b9953980d", size = 15715, upload-time = "2024-04-01T16:51:02.336Z" }, ] [[package]] -name = "charset-normalizer" -version = "3.4.1" +name = "annotated-types" +version = "0.7.0" source = { registry = "https://pypi.org/simple" } -sdist = { url = "https://files.pythonhosted.org/packages/16/b0/572805e227f01586461c80e0fd25d65a2115599cc9dad142fee4b747c357/charset_normalizer-3.4.1.tar.gz", hash = "sha256:44251f18cd68a75b56585dd00dae26183e102cd5e0f9f1466e6df5da2ed64ea3", size = 123188 } +sdist = { url = "https://files.pythonhosted.org/packages/ee/67/531ea369ba64dcff5ec9c3402f9f51bf748cec26dde048a2f973a4eea7f5/annotated_types-0.7.0.tar.gz", hash = "sha256:aff07c09a53a08bc8cfccb9c85b05f1aa9a2a6f23728d790723543408344ce89", size = 16081, upload-time = "2024-05-20T21:33:25.928Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/0a/9a/dd1e1cdceb841925b7798369a09279bd1cf183cef0f9ddf15a3a6502ee45/charset_normalizer-3.4.1-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:73d94b58ec7fecbc7366247d3b0b10a21681004153238750bb67bd9012414545", size = 196105 }, - { url = "https://files.pythonhosted.org/packages/d3/8c/90bfabf8c4809ecb648f39794cf2a84ff2e7d2a6cf159fe68d9a26160467/charset_normalizer-3.4.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:dad3e487649f498dd991eeb901125411559b22e8d7ab25d3aeb1af367df5efd7", size = 140404 }, - { url = "https://files.pythonhosted.org/packages/ad/8f/e410d57c721945ea3b4f1a04b74f70ce8fa800d393d72899f0a40526401f/charset_normalizer-3.4.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:c30197aa96e8eed02200a83fba2657b4c3acd0f0aa4bdc9f6c1af8e8962e0757", size = 150423 }, - { url = "https://files.pythonhosted.org/packages/f0/b8/e6825e25deb691ff98cf5c9072ee0605dc2acfca98af70c2d1b1bc75190d/charset_normalizer-3.4.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:2369eea1ee4a7610a860d88f268eb39b95cb588acd7235e02fd5a5601773d4fa", size = 143184 }, - { url = "https://files.pythonhosted.org/packages/3e/a2/513f6cbe752421f16d969e32f3583762bfd583848b763913ddab8d9bfd4f/charset_normalizer-3.4.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bc2722592d8998c870fa4e290c2eec2c1569b87fe58618e67d38b4665dfa680d", size = 145268 }, - { url = "https://files.pythonhosted.org/packages/74/94/8a5277664f27c3c438546f3eb53b33f5b19568eb7424736bdc440a88a31f/charset_normalizer-3.4.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:ffc9202a29ab3920fa812879e95a9e78b2465fd10be7fcbd042899695d75e616", size = 147601 }, - { url = "https://files.pythonhosted.org/packages/7c/5f/6d352c51ee763623a98e31194823518e09bfa48be2a7e8383cf691bbb3d0/charset_normalizer-3.4.1-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:804a4d582ba6e5b747c625bf1255e6b1507465494a40a2130978bda7b932c90b", size = 141098 }, - { url = "https://files.pythonhosted.org/packages/78/d4/f5704cb629ba5ab16d1d3d741396aec6dc3ca2b67757c45b0599bb010478/charset_normalizer-3.4.1-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:0f55e69f030f7163dffe9fd0752b32f070566451afe180f99dbeeb81f511ad8d", size = 149520 }, - { url = "https://files.pythonhosted.org/packages/c5/96/64120b1d02b81785f222b976c0fb79a35875457fa9bb40827678e54d1bc8/charset_normalizer-3.4.1-cp312-cp312-musllinux_1_2_ppc64le.whl", hash = "sha256:c4c3e6da02df6fa1410a7680bd3f63d4f710232d3139089536310d027950696a", size = 152852 }, - { url = "https://files.pythonhosted.org/packages/84/c9/98e3732278a99f47d487fd3468bc60b882920cef29d1fa6ca460a1fdf4e6/charset_normalizer-3.4.1-cp312-cp312-musllinux_1_2_s390x.whl", hash = "sha256:5df196eb874dae23dcfb968c83d4f8fdccb333330fe1fc278ac5ceeb101003a9", size = 150488 }, - { url = "https://files.pythonhosted.org/packages/13/0e/9c8d4cb99c98c1007cc11eda969ebfe837bbbd0acdb4736d228ccaabcd22/charset_normalizer-3.4.1-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:e358e64305fe12299a08e08978f51fc21fac060dcfcddd95453eabe5b93ed0e1", size = 146192 }, - { url = "https://files.pythonhosted.org/packages/0e/f6/65ecc6878a89bb1c23a086ea335ad4bf21a588990c3f535a227b9eea9108/charset_normalizer-3.4.1-py3-none-any.whl", hash = "sha256:d98b1668f06378c6dbefec3b92299716b931cd4e6061f3c875a71ced1780ab85", size = 49767 }, + { url = "https://files.pythonhosted.org/packages/78/b6/6307fbef88d9b5ee7421e68d78a9f162e0da4900bc5f5793f6d3d0e34fb8/annotated_types-0.7.0-py3-none-any.whl", hash = "sha256:1f02e8b43a8fbbc3f3e0d4f0f4bfc8131bcb4eebe8849b8e5c773f3a1c582a53", size = 13643, upload-time = "2024-05-20T21:33:24.1Z" }, ] [[package]] -name = "click" -version = "8.1.8" +name = "ansicolors" +version = "1.1.8" source = { registry = "https://pypi.org/simple" } -sdist = { url = "https://files.pythonhosted.org/packages/b9/2e/0090cbf739cee7d23781ad4b89a9894a41538e4fcf4c31dcdd705b78eb8b/click-8.1.8.tar.gz", hash = "sha256:ed53c9d8990d83c2a27deae68e4ee337473f6330c040a31d4225c9574d16096a", size = 226593 } +sdist = { url = "https://files.pythonhosted.org/packages/76/31/7faed52088732704523c259e24c26ce6f2f33fbeff2ff59274560c27628e/ansicolors-1.1.8.zip", hash = "sha256:99f94f5e3348a0bcd43c82e5fc4414013ccc19d70bd939ad71e0133ce9c372e0", size = 23027, upload-time = "2017-06-02T21:22:10.729Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/7e/d4/7ebdbd03970677812aac39c869717059dbb71a4cfc033ca6e5221787892c/click-8.1.8-py3-none-any.whl", hash = "sha256:63c132bbbed01578a06712a2d1f497bb62d9c1c0d329b7903a866228027263b2", size = 98188 }, + { url = "https://files.pythonhosted.org/packages/53/18/a56e2fe47b259bb52201093a3a9d4a32014f9d85071ad07e9d60600890ca/ansicolors-1.1.8-py2.py3-none-any.whl", hash = "sha256:00d2dde5a675579325902536738dd27e4fac1fd68f773fe36c21044eb559e187", size = 13847, upload-time = "2017-06-02T21:22:12.67Z" }, ] [[package]] -name = "cloup" -version = "3.0.6" +name = "anyio" +version = "4.9.0" source = { registry = "https://pypi.org/simple" } dependencies = [ - { name = "click", marker = "sys_platform == 'darwin' or sys_platform == 'linux'" }, -] -sdist = { url = "https://files.pythonhosted.org/packages/48/59/8d1b7913dd0a4df06b864455db59da53bcc6cc99f14b84f486c170e29029/cloup-3.0.6.tar.gz", hash = "sha256:7a43e1b611b9f1e9cb3e1e0e02247154cb530df3d909fa184e377cdee6834b98", size = 229337 } -wheels = [ - { url = "https://files.pythonhosted.org/packages/96/df/cce3c4b562845db6741abb520619a8b38d817a3ab4b82f2b6df3be7a7dfc/cloup-3.0.6-py2.py3-none-any.whl", hash = "sha256:ce46566204318e32b3e02d97d5e89bcaa9d9c3d0b8f94d1d060bc8b7a6be9179", size = 54446 }, + { name = "idna", marker = "sys_platform == 'linux'" }, + { name = "sniffio", marker = "sys_platform == 'linux'" }, + { name = "typing-extensions", marker = "sys_platform == 'linux'" }, ] - -[[package]] -name = "colorlog" -version = "6.9.0" -source = { registry = "https://pypi.org/simple" } -sdist = { url = "https://files.pythonhosted.org/packages/d3/7a/359f4d5df2353f26172b3cc39ea32daa39af8de522205f512f458923e677/colorlog-6.9.0.tar.gz", hash = "sha256:bfba54a1b93b94f54e1f4fe48395725a3d92fd2a4af702f6bd70946bdc0c6ac2", size = 16624 } +sdist = { url = "https://files.pythonhosted.org/packages/95/7d/4c1bd541d4dffa1b52bd83fb8527089e097a106fc90b467a7313b105f840/anyio-4.9.0.tar.gz", hash = "sha256:673c0c244e15788651a4ff38710fea9675823028a6f08a5eda409e0c9840a028", size = 190949, upload-time = "2025-03-17T00:02:54.77Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/e3/51/9b208e85196941db2f0654ad0357ca6388ab3ed67efdbfc799f35d1f83aa/colorlog-6.9.0-py3-none-any.whl", hash = "sha256:5906e71acd67cb07a71e779c47c4bcb45fb8c2993eebe9e5adcd6a6f1b283eff", size = 11424 }, + { url = "https://files.pythonhosted.org/packages/a1/ee/48ca1a7c89ffec8b6a0c5d02b89c305671d5ffd8d3c94acf8b8c408575bb/anyio-4.9.0-py3-none-any.whl", hash = "sha256:9f76d541cad6e36af7beb62e978876f3b41e3e04f2c1fbf0884604c0a9c4d93c", size = 100916, upload-time = "2025-03-17T00:02:52.713Z" }, ] [[package]] -name = "coverage" -version = "7.6.12" +name = "appengine-python-standard" +version = "1.1.10" source = { registry = "https://pypi.org/simple" } -sdist = { url = "https://files.pythonhosted.org/packages/0c/d6/2b53ab3ee99f2262e6f0b8369a43f6d66658eab45510331c0b3d5c8c4272/coverage-7.6.12.tar.gz", hash = "sha256:48cfc4641d95d34766ad41d9573cc0f22a48aa88d22657a1fe01dca0dbae4de2", size = 805941 } +dependencies = [ + { name = "attrs", marker = "sys_platform == 'linux'" }, + { name = "frozendict", marker = "sys_platform == 'linux'" }, + { name = "google-auth", marker = "sys_platform == 'linux'" }, + { name = "legacy-cgi", marker = "sys_platform == 'linux'" }, + { name = "mock", marker = "sys_platform == 'linux'" }, + { name = "pillow", marker = "sys_platform == 'linux'" }, + { name = "protobuf", marker = "sys_platform == 'linux'" }, + { name = "pytz", marker = "sys_platform == 'linux'" }, + { name = "requests", marker = "sys_platform == 'linux'" }, + { name = "ruamel-yaml", marker = "sys_platform == 'linux'" }, + { name = "six", marker = "sys_platform == 'linux'" }, + { name = "urllib3", marker = "sys_platform == 'linux'" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/4f/8f/f5b94cb4b7003bcda2f2a81f4a38ed7f1b272dd65d6468564a7cf54c0168/appengine_python_standard-1.1.10.tar.gz", hash = "sha256:2682cafa4d4d409a290268e4ef5066ebe9486f8543384d56632ca38fe4a2fdf7", size = 837038, upload-time = "2025-03-05T06:42:44.564Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/e2/7f/4af2ed1d06ce6bee7eafc03b2ef748b14132b0bdae04388e451e4b2c529b/coverage-7.6.12-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:b172f8e030e8ef247b3104902cc671e20df80163b60a203653150d2fc204d1ad", size = 208645 }, - { url = "https://files.pythonhosted.org/packages/dc/60/d19df912989117caa95123524d26fc973f56dc14aecdec5ccd7d0084e131/coverage-7.6.12-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:641dfe0ab73deb7069fb972d4d9725bf11c239c309ce694dd50b1473c0f641c3", size = 208898 }, - { url = "https://files.pythonhosted.org/packages/bd/10/fecabcf438ba676f706bf90186ccf6ff9f6158cc494286965c76e58742fa/coverage-7.6.12-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0e549f54ac5f301e8e04c569dfdb907f7be71b06b88b5063ce9d6953d2d58574", size = 242987 }, - { url = "https://files.pythonhosted.org/packages/4c/53/4e208440389e8ea936f5f2b0762dcd4cb03281a7722def8e2bf9dc9c3d68/coverage-7.6.12-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:959244a17184515f8c52dcb65fb662808767c0bd233c1d8a166e7cf74c9ea985", size = 239881 }, - { url = "https://files.pythonhosted.org/packages/c4/47/2ba744af8d2f0caa1f17e7746147e34dfc5f811fb65fc153153722d58835/coverage-7.6.12-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bda1c5f347550c359f841d6614fb8ca42ae5cb0b74d39f8a1e204815ebe25750", size = 242142 }, - { url = "https://files.pythonhosted.org/packages/e9/90/df726af8ee74d92ee7e3bf113bf101ea4315d71508952bd21abc3fae471e/coverage-7.6.12-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:1ceeb90c3eda1f2d8c4c578c14167dbd8c674ecd7d38e45647543f19839dd6ea", size = 241437 }, - { url = "https://files.pythonhosted.org/packages/f6/af/995263fd04ae5f9cf12521150295bf03b6ba940d0aea97953bb4a6db3e2b/coverage-7.6.12-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:0f16f44025c06792e0fb09571ae454bcc7a3ec75eeb3c36b025eccf501b1a4c3", size = 239724 }, - { url = "https://files.pythonhosted.org/packages/1c/8e/5bb04f0318805e190984c6ce106b4c3968a9562a400180e549855d8211bd/coverage-7.6.12-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:b076e625396e787448d27a411aefff867db2bffac8ed04e8f7056b07024eed5a", size = 241329 }, - { url = "https://files.pythonhosted.org/packages/fb/b2/f655700e1024dec98b10ebaafd0cedbc25e40e4abe62a3c8e2ceef4f8f0a/coverage-7.6.12-py3-none-any.whl", hash = "sha256:eb8668cfbc279a536c633137deeb9435d2962caec279c3f8cf8b91fff6ff8953", size = 200552 }, + { url = "https://files.pythonhosted.org/packages/f9/c2/25ff8758838ffa2b6d71c516f253bd78a8ede3826700a1d8ad576fedb185/appengine_python_standard-1.1.10-py3-none-any.whl", hash = "sha256:3cadab50db5a83421627282e4b8213c31f8f66fe52077fd1448e8da96b8e184f", size = 993671, upload-time = "2025-03-05T06:42:42.697Z" }, ] [[package]] -name = "cryptography" -version = "44.0.1" +name = "argon2-cffi" +version = "25.1.0" source = { registry = "https://pypi.org/simple" } dependencies = [ - { name = "cffi", marker = "(platform_python_implementation != 'PyPy' and sys_platform == 'darwin') or (platform_python_implementation != 'PyPy' and sys_platform == 'linux')" }, + { name = "argon2-cffi-bindings", marker = "sys_platform == 'linux'" }, ] -sdist = { url = "https://files.pythonhosted.org/packages/c7/67/545c79fe50f7af51dbad56d16b23fe33f63ee6a5d956b3cb68ea110cbe64/cryptography-44.0.1.tar.gz", hash = "sha256:f51f5705ab27898afda1aaa430f34ad90dc117421057782022edf0600bec5f14", size = 710819 } +sdist = { url = "https://files.pythonhosted.org/packages/0e/89/ce5af8a7d472a67cc819d5d998aa8c82c5d860608c4db9f46f1162d7dab9/argon2_cffi-25.1.0.tar.gz", hash = "sha256:694ae5cc8a42f4c4e2bf2ca0e64e51e23a040c6a517a85074683d3959e1346c1", size = 45706, upload-time = "2025-06-03T06:55:32.073Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/72/27/5e3524053b4c8889da65cf7814a9d0d8514a05194a25e1e34f46852ee6eb/cryptography-44.0.1-cp37-abi3-macosx_10_9_universal2.whl", hash = "sha256:bf688f615c29bfe9dfc44312ca470989279f0e94bb9f631f85e3459af8efc009", size = 6642022 }, - { url = "https://files.pythonhosted.org/packages/34/b9/4d1fa8d73ae6ec350012f89c3abfbff19fc95fe5420cf972e12a8d182986/cryptography-44.0.1-cp37-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:dd7c7e2d71d908dc0f8d2027e1604102140d84b155e658c20e8ad1304317691f", size = 3943865 }, - { url = "https://files.pythonhosted.org/packages/6e/57/371a9f3f3a4500807b5fcd29fec77f418ba27ffc629d88597d0d1049696e/cryptography-44.0.1-cp37-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:887143b9ff6bad2b7570da75a7fe8bbf5f65276365ac259a5d2d5147a73775f2", size = 4162562 }, - { url = "https://files.pythonhosted.org/packages/c5/1d/5b77815e7d9cf1e3166988647f336f87d5634a5ccecec2ffbe08ef8dd481/cryptography-44.0.1-cp37-abi3-manylinux_2_28_aarch64.whl", hash = "sha256:322eb03ecc62784536bc173f1483e76747aafeb69c8728df48537eb431cd1911", size = 3951923 }, - { url = "https://files.pythonhosted.org/packages/28/01/604508cd34a4024467cd4105887cf27da128cba3edd435b54e2395064bfb/cryptography-44.0.1-cp37-abi3-manylinux_2_28_armv7l.manylinux_2_31_armv7l.whl", hash = "sha256:21377472ca4ada2906bc313168c9dc7b1d7ca417b63c1c3011d0c74b7de9ae69", size = 3685194 }, - { url = "https://files.pythonhosted.org/packages/c6/3d/d3c55d4f1d24580a236a6753902ef6d8aafd04da942a1ee9efb9dc8fd0cb/cryptography-44.0.1-cp37-abi3-manylinux_2_28_x86_64.whl", hash = "sha256:df978682c1504fc93b3209de21aeabf2375cb1571d4e61907b3e7a2540e83026", size = 4187790 }, - { url = "https://files.pythonhosted.org/packages/ea/a6/44d63950c8588bfa8594fd234d3d46e93c3841b8e84a066649c566afb972/cryptography-44.0.1-cp37-abi3-manylinux_2_34_aarch64.whl", hash = "sha256:eb3889330f2a4a148abead555399ec9a32b13b7c8ba969b72d8e500eb7ef84cd", size = 3951343 }, - { url = "https://files.pythonhosted.org/packages/c1/17/f5282661b57301204cbf188254c1a0267dbd8b18f76337f0a7ce1038888c/cryptography-44.0.1-cp37-abi3-manylinux_2_34_x86_64.whl", hash = "sha256:8e6a85a93d0642bd774460a86513c5d9d80b5c002ca9693e63f6e540f1815ed0", size = 4187127 }, - { url = "https://files.pythonhosted.org/packages/f3/68/abbae29ed4f9d96596687f3ceea8e233f65c9645fbbec68adb7c756bb85a/cryptography-44.0.1-cp37-abi3-musllinux_1_2_aarch64.whl", hash = "sha256:6f76fdd6fd048576a04c5210d53aa04ca34d2ed63336d4abd306d0cbe298fddf", size = 4070666 }, - { url = "https://files.pythonhosted.org/packages/0f/10/cf91691064a9e0a88ae27e31779200b1505d3aee877dbe1e4e0d73b4f155/cryptography-44.0.1-cp37-abi3-musllinux_1_2_x86_64.whl", hash = "sha256:6c8acf6f3d1f47acb2248ec3ea261171a671f3d9428e34ad0357148d492c7864", size = 4288811 }, - { url = "https://files.pythonhosted.org/packages/9f/f1/676e69c56a9be9fd1bffa9bc3492366901f6e1f8f4079428b05f1414e65c/cryptography-44.0.1-cp39-abi3-macosx_10_9_universal2.whl", hash = "sha256:a2d8a7045e1ab9b9f803f0d9531ead85f90c5f2859e653b61497228b18452008", size = 6643714 }, - { url = "https://files.pythonhosted.org/packages/ba/9f/1775600eb69e72d8f9931a104120f2667107a0ee478f6ad4fe4001559345/cryptography-44.0.1-cp39-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b8272f257cf1cbd3f2e120f14c68bff2b6bdfcc157fafdee84a1b795efd72862", size = 3943269 }, - { url = "https://files.pythonhosted.org/packages/25/ba/e00d5ad6b58183829615be7f11f55a7b6baa5a06910faabdc9961527ba44/cryptography-44.0.1-cp39-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:1e8d181e90a777b63f3f0caa836844a1182f1f265687fac2115fcf245f5fbec3", size = 4166461 }, - { url = "https://files.pythonhosted.org/packages/b3/45/690a02c748d719a95ab08b6e4decb9d81e0ec1bac510358f61624c86e8a3/cryptography-44.0.1-cp39-abi3-manylinux_2_28_aarch64.whl", hash = "sha256:436df4f203482f41aad60ed1813811ac4ab102765ecae7a2bbb1dbb66dcff5a7", size = 3950314 }, - { url = "https://files.pythonhosted.org/packages/e6/50/bf8d090911347f9b75adc20f6f6569ed6ca9b9bff552e6e390f53c2a1233/cryptography-44.0.1-cp39-abi3-manylinux_2_28_armv7l.manylinux_2_31_armv7l.whl", hash = "sha256:4f422e8c6a28cf8b7f883eb790695d6d45b0c385a2583073f3cec434cc705e1a", size = 3686675 }, - { url = "https://files.pythonhosted.org/packages/e1/e7/cfb18011821cc5f9b21efb3f94f3241e3a658d267a3bf3a0f45543858ed8/cryptography-44.0.1-cp39-abi3-manylinux_2_28_x86_64.whl", hash = "sha256:72198e2b5925155497a5a3e8c216c7fb3e64c16ccee11f0e7da272fa93b35c4c", size = 4190429 }, - { url = "https://files.pythonhosted.org/packages/07/ef/77c74d94a8bfc1a8a47b3cafe54af3db537f081742ee7a8a9bd982b62774/cryptography-44.0.1-cp39-abi3-manylinux_2_34_aarch64.whl", hash = "sha256:2a46a89ad3e6176223b632056f321bc7de36b9f9b93b2cc1cccf935a3849dc62", size = 3950039 }, - { url = "https://files.pythonhosted.org/packages/6d/b9/8be0ff57c4592382b77406269b1e15650c9f1a167f9e34941b8515b97159/cryptography-44.0.1-cp39-abi3-manylinux_2_34_x86_64.whl", hash = "sha256:53f23339864b617a3dfc2b0ac8d5c432625c80014c25caac9082314e9de56f41", size = 4189713 }, - { url = "https://files.pythonhosted.org/packages/78/e1/4b6ac5f4100545513b0847a4d276fe3c7ce0eacfa73e3b5ebd31776816ee/cryptography-44.0.1-cp39-abi3-musllinux_1_2_aarch64.whl", hash = "sha256:888fcc3fce0c888785a4876ca55f9f43787f4c5c1cc1e2e0da71ad481ff82c5b", size = 4071193 }, - { url = "https://files.pythonhosted.org/packages/3d/cb/afff48ceaed15531eab70445abe500f07f8f96af2bb35d98af6bfa89ebd4/cryptography-44.0.1-cp39-abi3-musllinux_1_2_x86_64.whl", hash = "sha256:00918d859aa4e57db8299607086f793fa7813ae2ff5a4637e318a25ef82730f7", size = 4289566 }, + { url = "https://files.pythonhosted.org/packages/4f/d3/a8b22fa575b297cd6e3e3b0155c7e25db170edf1c74783d6a31a2490b8d9/argon2_cffi-25.1.0-py3-none-any.whl", hash = "sha256:fdc8b074db390fccb6eb4a3604ae7231f219aa669a2652e0f20e16ba513d5741", size = 14657, upload-time = "2025-06-03T06:55:30.804Z" }, ] [[package]] -name = "decorator" -version = "5.2.1" +name = "argon2-cffi-bindings" +version = "21.2.0" source = { registry = "https://pypi.org/simple" } -sdist = { url = "https://files.pythonhosted.org/packages/43/fa/6d96a0978d19e17b68d634497769987b16c8f4cd0a7a05048bec693caa6b/decorator-5.2.1.tar.gz", hash = "sha256:65f266143752f734b0a7cc83c46f4618af75b8c5911b00ccb61d0ac9b6da0360", size = 56711 } +dependencies = [ + { name = "cffi", marker = "sys_platform == 'linux'" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/b9/e9/184b8ccce6683b0aa2fbb7ba5683ea4b9c5763f1356347f1312c32e3c66e/argon2-cffi-bindings-21.2.0.tar.gz", hash = "sha256:bb89ceffa6c791807d1305ceb77dbfacc5aa499891d2c55661c6459651fc39e3", size = 1779911, upload-time = "2021-12-01T08:52:55.68Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/4e/8c/f3147f5c4b73e7550fe5f9352eaa956ae838d5c51eb58e7a25b9f3e2643b/decorator-5.2.1-py3-none-any.whl", hash = "sha256:d316bb415a2d9e2d2b3abcc4084c6502fc09240e292cd76a76afc106a1c8e04a", size = 9190 }, + { url = "https://files.pythonhosted.org/packages/d4/13/838ce2620025e9666aa8f686431f67a29052241692a3dd1ae9d3692a89d3/argon2_cffi_bindings-21.2.0-cp36-abi3-macosx_10_9_x86_64.whl", hash = "sha256:ccb949252cb2ab3a08c02024acb77cfb179492d5701c7cbdbfd776124d4d2367", size = 29658, upload-time = "2021-12-01T09:09:17.016Z" }, + { url = "https://files.pythonhosted.org/packages/b3/02/f7f7bb6b6af6031edb11037639c697b912e1dea2db94d436e681aea2f495/argon2_cffi_bindings-21.2.0-cp36-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:9524464572e12979364b7d600abf96181d3541da11e23ddf565a32e70bd4dc0d", size = 80583, upload-time = "2021-12-01T09:09:19.546Z" }, + { url = "https://files.pythonhosted.org/packages/ec/f7/378254e6dd7ae6f31fe40c8649eea7d4832a42243acaf0f1fff9083b2bed/argon2_cffi_bindings-21.2.0-cp36-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b746dba803a79238e925d9046a63aa26bf86ab2a2fe74ce6b009a1c3f5c8f2ae", size = 86168, upload-time = "2021-12-01T09:09:21.445Z" }, + { url = "https://files.pythonhosted.org/packages/74/f6/4a34a37a98311ed73bb80efe422fed95f2ac25a4cacc5ae1d7ae6a144505/argon2_cffi_bindings-21.2.0-cp36-abi3-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:58ed19212051f49a523abb1dbe954337dc82d947fb6e5a0da60f7c8471a8476c", size = 82709, upload-time = "2021-12-01T09:09:18.182Z" }, + { url = "https://files.pythonhosted.org/packages/74/2b/73d767bfdaab25484f7e7901379d5f8793cccbb86c6e0cbc4c1b96f63896/argon2_cffi_bindings-21.2.0-cp36-abi3-musllinux_1_1_aarch64.whl", hash = "sha256:bd46088725ef7f58b5a1ef7ca06647ebaf0eb4baff7d1d0d177c6cc8744abd86", size = 83613, upload-time = "2021-12-01T09:09:22.741Z" }, + { url = "https://files.pythonhosted.org/packages/4f/fd/37f86deef67ff57c76f137a67181949c2d408077e2e3dd70c6c42912c9bf/argon2_cffi_bindings-21.2.0-cp36-abi3-musllinux_1_1_i686.whl", hash = "sha256:8cd69c07dd875537a824deec19f978e0f2078fdda07fd5c42ac29668dda5f40f", size = 84583, upload-time = "2021-12-01T09:09:24.177Z" }, + { url = "https://files.pythonhosted.org/packages/6f/52/5a60085a3dae8fded8327a4f564223029f5f54b0cb0455a31131b5363a01/argon2_cffi_bindings-21.2.0-cp36-abi3-musllinux_1_1_x86_64.whl", hash = "sha256:f1152ac548bd5b8bcecfb0b0371f082037e47128653df2e8ba6e914d384f3c3e", size = 88475, upload-time = "2021-12-01T09:09:26.673Z" }, + { url = "https://files.pythonhosted.org/packages/8b/95/143cd64feb24a15fa4b189a3e1e7efbaeeb00f39a51e99b26fc62fbacabd/argon2_cffi_bindings-21.2.0-cp36-abi3-win32.whl", hash = "sha256:603ca0aba86b1349b147cab91ae970c63118a0f30444d4bc80355937c950c082", size = 27698, upload-time = "2021-12-01T09:09:27.87Z" }, + { url = "https://files.pythonhosted.org/packages/37/2c/e34e47c7dee97ba6f01a6203e0383e15b60fb85d78ac9a15cd066f6fe28b/argon2_cffi_bindings-21.2.0-cp36-abi3-win_amd64.whl", hash = "sha256:b2ef1c30440dbbcba7a5dc3e319408b59676e2e039e2ae11a8775ecf482b192f", size = 30817, upload-time = "2021-12-01T09:09:30.267Z" }, + { url = "https://files.pythonhosted.org/packages/5a/e4/bf8034d25edaa495da3c8a3405627d2e35758e44ff6eaa7948092646fdcc/argon2_cffi_bindings-21.2.0-cp38-abi3-macosx_10_9_universal2.whl", hash = "sha256:e415e3f62c8d124ee16018e491a009937f8cf7ebf5eb430ffc5de21b900dad93", size = 53104, upload-time = "2021-12-01T09:09:31.335Z" }, ] [[package]] -name = "deepdiff" -version = "8.2.0" +name = "arrow" +version = "1.3.0" source = { registry = "https://pypi.org/simple" } dependencies = [ - { name = "orderly-set", marker = "sys_platform == 'darwin' or sys_platform == 'linux'" }, + { name = "python-dateutil", marker = "sys_platform == 'linux'" }, + { name = "types-python-dateutil", marker = "sys_platform == 'linux'" }, ] -sdist = { url = "https://files.pythonhosted.org/packages/89/12/207d2ec96a526cf9d04fc2423ff9832e93b665e94b9d7c9b5198903e18a7/deepdiff-8.2.0.tar.gz", hash = "sha256:6ec78f65031485735545ffbe7a61e716c3c2d12ca6416886d5e9291fc76c46c3", size = 432573 } +sdist = { url = "https://files.pythonhosted.org/packages/2e/00/0f6e8fcdb23ea632c866620cc872729ff43ed91d284c866b515c6342b173/arrow-1.3.0.tar.gz", hash = "sha256:d4540617648cb5f895730f1ad8c82a65f2dad0166f57b75f3ca54759c4d67a85", size = 131960, upload-time = "2023-09-30T22:11:18.25Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/6c/13/d7dd6b8c297b1d5cfea4f1ebd678e68d90ab04b6613d005c0a7c506d11e1/deepdiff-8.2.0-py3-none-any.whl", hash = "sha256:5091f2cdfd372b1b9f6bfd8065ba323ae31118dc4e42594371b38c8bea3fd0a4", size = 83672 }, + { url = "https://files.pythonhosted.org/packages/f8/ed/e97229a566617f2ae958a6b13e7cc0f585470eac730a73e9e82c32a3cdd2/arrow-1.3.0-py3-none-any.whl", hash = "sha256:c728b120ebc00eb84e01882a6f5e7927a53960aa990ce7dd2b10f39005a67f80", size = 66419, upload-time = "2023-09-30T22:11:16.072Z" }, ] [[package]] -name = "distlib" -version = "0.3.9" +name = "astroid" +version = "3.3.10" source = { registry = "https://pypi.org/simple" } -sdist = { url = "https://files.pythonhosted.org/packages/0d/dd/1bec4c5ddb504ca60fc29472f3d27e8d4da1257a854e1d96742f15c1d02d/distlib-0.3.9.tar.gz", hash = "sha256:a60f20dea646b8a33f3e7772f74dc0b2d0772d2837ee1342a00645c81edf9403", size = 613923 } +sdist = { url = "https://files.pythonhosted.org/packages/00/c2/9b2de9ed027f9fe5734a6c0c0a601289d796b3caaf1e372e23fa88a73047/astroid-3.3.10.tar.gz", hash = "sha256:c332157953060c6deb9caa57303ae0d20b0fbdb2e59b4a4f2a6ba49d0a7961ce", size = 398941, upload-time = "2025-05-10T13:33:10.405Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/91/a1/cf2472db20f7ce4a6be1253a81cfdf85ad9c7885ffbed7047fb72c24cf87/distlib-0.3.9-py2.py3-none-any.whl", hash = "sha256:47f8c22fd27c27e25a65601af709b38e4f0a45ea4fc2e710f65755fa8caaaf87", size = 468973 }, + { url = "https://files.pythonhosted.org/packages/15/58/5260205b9968c20b6457ed82f48f9e3d6edf2f1f95103161798b73aeccf0/astroid-3.3.10-py3-none-any.whl", hash = "sha256:104fb9cb9b27ea95e847a94c003be03a9e039334a8ebca5ee27dafaf5c5711eb", size = 275388, upload-time = "2025-05-10T13:33:08.391Z" }, ] [[package]] -name = "docker" -version = "7.1.0" +name = "asttokens" +version = "3.0.0" source = { registry = "https://pypi.org/simple" } -dependencies = [ - { name = "requests", marker = "sys_platform == 'darwin' or sys_platform == 'linux'" }, - { name = "urllib3", marker = "sys_platform == 'darwin' or sys_platform == 'linux'" }, -] -sdist = { url = "https://files.pythonhosted.org/packages/91/9b/4a2ea29aeba62471211598dac5d96825bb49348fa07e906ea930394a83ce/docker-7.1.0.tar.gz", hash = "sha256:ad8c70e6e3f8926cb8a92619b832b4ea5299e2831c14284663184e200546fa6c", size = 117834 } +sdist = { url = "https://files.pythonhosted.org/packages/4a/e7/82da0a03e7ba5141f05cce0d302e6eed121ae055e0456ca228bf693984bc/asttokens-3.0.0.tar.gz", hash = "sha256:0dcd8baa8d62b0c1d118b399b2ddba3c4aff271d0d7a9e0d4c1681c79035bbc7", size = 61978, upload-time = "2024-11-30T04:30:14.439Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/e3/26/57c6fb270950d476074c087527a558ccb6f4436657314bfb6cdf484114c4/docker-7.1.0-py3-none-any.whl", hash = "sha256:c96b93b7f0a746f9e77d325bcfb87422a3d8bd4f03136ae8a85b37f1898d5fc0", size = 147774 }, + { url = "https://files.pythonhosted.org/packages/25/8a/c46dcc25341b5bce5472c718902eb3d38600a903b14fa6aeecef3f21a46f/asttokens-3.0.0-py3-none-any.whl", hash = "sha256:e3078351a059199dd5138cb1c706e6430c05eff2ff136af5eb4790f9d28932e2", size = 26918, upload-time = "2024-11-30T04:30:10.946Z" }, ] [[package]] -name = "durationpy" -version = "0.9" +name = "astunparse" +version = "1.6.3" source = { registry = "https://pypi.org/simple" } -sdist = { url = "https://files.pythonhosted.org/packages/31/e9/f49c4e7fccb77fa5c43c2480e09a857a78b41e7331a75e128ed5df45c56b/durationpy-0.9.tar.gz", hash = "sha256:fd3feb0a69a0057d582ef643c355c40d2fa1c942191f914d12203b1a01ac722a", size = 3186 } +dependencies = [ + { name = "six", marker = "sys_platform == 'linux'" }, + { name = "wheel", marker = "sys_platform == 'linux'" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/f3/af/4182184d3c338792894f34a62672919db7ca008c89abee9b564dd34d8029/astunparse-1.6.3.tar.gz", hash = "sha256:5ad93a8456f0d084c3456d059fd9a92cce667963232cbf763eac3bc5b7940872", size = 18290, upload-time = "2019-12-22T18:12:13.129Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/4c/a3/ac312faeceffd2d8f86bc6dcb5c401188ba5a01bc88e69bed97578a0dfcd/durationpy-0.9-py3-none-any.whl", hash = "sha256:e65359a7af5cedad07fb77a2dd3f390f8eb0b74cb845589fa6c057086834dd38", size = 3461 }, + { url = "https://files.pythonhosted.org/packages/2b/03/13dde6512ad7b4557eb792fbcf0c653af6076b81e5941d36ec61f7ce6028/astunparse-1.6.3-py2.py3-none-any.whl", hash = "sha256:c2652417f2c8b5bb325c885ae329bdf3f86424075c4fd1a128674bc6fba4b8e8", size = 12732, upload-time = "2019-12-22T18:12:11.297Z" }, ] [[package]] -name = "executing" -version = "2.2.0" +name = "async-lru" +version = "2.0.5" source = { registry = "https://pypi.org/simple" } -sdist = { url = "https://files.pythonhosted.org/packages/91/50/a9d80c47ff289c611ff12e63f7c5d13942c65d68125160cefd768c73e6e4/executing-2.2.0.tar.gz", hash = "sha256:5d108c028108fe2551d1a7b2e8b713341e2cb4fc0aa7dcf966fa4327a5226755", size = 978693 } +sdist = { url = "https://files.pythonhosted.org/packages/b2/4d/71ec4d3939dc755264f680f6c2b4906423a304c3d18e96853f0a595dfe97/async_lru-2.0.5.tar.gz", hash = "sha256:481d52ccdd27275f42c43a928b4a50c3bfb2d67af4e78b170e3e0bb39c66e5bb", size = 10380, upload-time = "2025-03-16T17:25:36.919Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/7b/8f/c4d9bafc34ad7ad5d8dc16dd1347ee0e507a52c3adb6bfa8887e1c6a26ba/executing-2.2.0-py2.py3-none-any.whl", hash = "sha256:11387150cad388d62750327a53d3339fad4888b39a6fe233c3afbb54ecffd3aa", size = 26702 }, + { url = "https://files.pythonhosted.org/packages/03/49/d10027df9fce941cb8184e78a02857af36360d33e1721df81c5ed2179a1a/async_lru-2.0.5-py3-none-any.whl", hash = "sha256:ab95404d8d2605310d345932697371a5f40def0487c03d6d0ad9138de52c9943", size = 6069, upload-time = "2025-03-16T17:25:35.422Z" }, ] [[package]] -name = "filelock" -version = "3.18.0" +name = "attrs" +version = "25.1.0" source = { registry = "https://pypi.org/simple" } -sdist = { url = "https://files.pythonhosted.org/packages/0a/10/c23352565a6544bdc5353e0b15fc1c563352101f30e24bf500207a54df9a/filelock-3.18.0.tar.gz", hash = "sha256:adbc88eabb99d2fec8c9c1b229b171f18afa655400173ddc653d5d01501fb9f2", size = 18075 } +sdist = { url = "https://files.pythonhosted.org/packages/49/7c/fdf464bcc51d23881d110abd74b512a42b3d5d376a55a831b44c603ae17f/attrs-25.1.0.tar.gz", hash = "sha256:1c97078a80c814273a76b2a298a932eb681c87415c11dee0a6921de7f1b02c3e", size = 810562, upload-time = "2025-01-25T11:30:12.508Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/4d/36/2a115987e2d8c300a974597416d9de88f2444426de9571f4b59b2cca3acc/filelock-3.18.0-py3-none-any.whl", hash = "sha256:c401f4f8377c4464e6db25fff06205fd89bdd83b65eb0488ed1b160f780e21de", size = 16215 }, + { url = "https://files.pythonhosted.org/packages/fc/30/d4986a882011f9df997a55e6becd864812ccfcd821d64aac8570ee39f719/attrs-25.1.0-py3-none-any.whl", hash = "sha256:c75a69e28a550a7e93789579c22aa26b0f5b83b75dc4e08fe092980051e1090a", size = 63152, upload-time = "2025-01-25T11:30:10.164Z" }, ] [[package]] -name = "google-auth" -version = "2.38.0" +name = "autopep8" +version = "2.0.4" source = { registry = "https://pypi.org/simple" } dependencies = [ - { name = "cachetools", marker = "sys_platform == 'darwin' or sys_platform == 'linux'" }, - { name = "pyasn1-modules", marker = "sys_platform == 'darwin' or sys_platform == 'linux'" }, - { name = "rsa", marker = "sys_platform == 'darwin' or sys_platform == 'linux'" }, + { name = "pycodestyle", marker = "sys_platform == 'linux'" }, ] -sdist = { url = "https://files.pythonhosted.org/packages/c6/eb/d504ba1daf190af6b204a9d4714d457462b486043744901a6eeea711f913/google_auth-2.38.0.tar.gz", hash = "sha256:8285113607d3b80a3f1543b75962447ba8a09fe85783432a784fdeef6ac094c4", size = 270866 } +sdist = { url = "https://files.pythonhosted.org/packages/e0/8a/9be661f5400867a09706e29f5ab99a59987fd3a4c337757365e7491fa90b/autopep8-2.0.4.tar.gz", hash = "sha256:2913064abd97b3419d1cc83ea71f042cb821f87e45b9c88cad5ad3c4ea87fe0c", size = 116472, upload-time = "2023-08-26T13:49:59.375Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/9d/47/603554949a37bca5b7f894d51896a9c534b9eab808e2520a748e081669d0/google_auth-2.38.0-py2.py3-none-any.whl", hash = "sha256:e7dae6694313f434a2727bf2906f27ad259bae090d7aa896590d86feec3d9d4a", size = 210770 }, + { url = "https://files.pythonhosted.org/packages/d8/f2/e63c9f9c485cd90df8e4e7ae90fa3be2469c9641888558c7b45fa98a76f8/autopep8-2.0.4-py2.py3-none-any.whl", hash = "sha256:067959ca4a07b24dbd5345efa8325f5f58da4298dab0dde0443d5ed765de80cb", size = 45340, upload-time = "2023-08-26T13:49:56.111Z" }, ] [[package]] -name = "identify" -version = "2.6.9" +name = "babel" +version = "2.17.0" source = { registry = "https://pypi.org/simple" } -sdist = { url = "https://files.pythonhosted.org/packages/9b/98/a71ab060daec766acc30fb47dfca219d03de34a70d616a79a38c6066c5bf/identify-2.6.9.tar.gz", hash = "sha256:d40dfe3142a1421d8518e3d3985ef5ac42890683e32306ad614a29490abeb6bf", size = 99249 } +sdist = { url = "https://files.pythonhosted.org/packages/7d/6b/d52e42361e1aa00709585ecc30b3f9684b3ab62530771402248b1b1d6240/babel-2.17.0.tar.gz", hash = "sha256:0c54cffb19f690cdcc52a3b50bcbf71e07a808d1c80d549f2459b9d2cf0afb9d", size = 9951852, upload-time = "2025-02-01T15:17:41.026Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/07/ce/0845144ed1f0e25db5e7a79c2354c1da4b5ce392b8966449d5db8dca18f1/identify-2.6.9-py2.py3-none-any.whl", hash = "sha256:c98b4322da415a8e5a70ff6e51fbc2d2932c015532d77e9f8537b4ba7813b150", size = 99101 }, + { url = "https://files.pythonhosted.org/packages/b7/b8/3fe70c75fe32afc4bb507f75563d39bc5642255d1d94f1f23604725780bf/babel-2.17.0-py3-none-any.whl", hash = "sha256:4d0b53093fdfb4b21c92b5213dba5a1b23885afa8383709427046b21c366e5f2", size = 10182537, upload-time = "2025-02-01T15:17:37.39Z" }, ] [[package]] -name = "idna" -version = "3.10" +name = "bcrypt" +version = "4.2.1" source = { registry = "https://pypi.org/simple" } -sdist = { url = "https://files.pythonhosted.org/packages/f1/70/7703c29685631f5a7590aa73f1f1d3fa9a380e654b86af429e0934a32f7d/idna-3.10.tar.gz", hash = "sha256:12f65c9b470abda6dc35cf8e63cc574b1c52b11df2c86030af0ac09b01b13ea9", size = 190490 } +sdist = { url = "https://files.pythonhosted.org/packages/56/8c/dd696962612e4cd83c40a9e6b3db77bfe65a830f4b9af44098708584686c/bcrypt-4.2.1.tar.gz", hash = "sha256:6765386e3ab87f569b276988742039baab087b2cdb01e809d74e74503c2faafe", size = 24427, upload-time = "2024-11-19T20:08:07.159Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/76/c6/c88e154df9c4e1a2a66ccf0005a88dfb2650c1dffb6f5ce603dfbd452ce3/idna-3.10-py3-none-any.whl", hash = "sha256:946d195a0d259cbba61165e88e65941f16e9b36ea6ddb97f00452bae8b1287d3", size = 70442 }, + { url = "https://files.pythonhosted.org/packages/bc/ca/e17b08c523adb93d5f07a226b2bd45a7c6e96b359e31c1e99f9db58cb8c3/bcrypt-4.2.1-cp37-abi3-macosx_10_12_universal2.whl", hash = "sha256:1340411a0894b7d3ef562fb233e4b6ed58add185228650942bdc885362f32c17", size = 489982, upload-time = "2024-11-19T20:07:21.899Z" }, + { url = "https://files.pythonhosted.org/packages/6a/be/e7c6e0fd6087ee8fc6d77d8d9e817e9339d879737509019b9a9012a1d96f/bcrypt-4.2.1-cp37-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b1ee315739bc8387aa36ff127afc99120ee452924e0df517a8f3e4c0187a0f5f", size = 273108, upload-time = "2024-11-19T20:07:24.464Z" }, + { url = "https://files.pythonhosted.org/packages/d6/53/ac084b7d985aee1a5f2b086d501f550862596dbf73220663b8c17427e7f2/bcrypt-4.2.1-cp37-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8dbd0747208912b1e4ce730c6725cb56c07ac734b3629b60d4398f082ea718ad", size = 278733, upload-time = "2024-11-19T20:07:27.026Z" }, + { url = "https://files.pythonhosted.org/packages/8e/ab/b8710a3d6231c587e575ead0b1c45bb99f5454f9f579c9d7312c17b069cc/bcrypt-4.2.1-cp37-abi3-manylinux_2_28_aarch64.whl", hash = "sha256:aaa2e285be097050dba798d537b6efd9b698aa88eef52ec98d23dcd6d7cf6fea", size = 273856, upload-time = "2024-11-19T20:07:29.209Z" }, + { url = "https://files.pythonhosted.org/packages/9d/e5/2fd1ea6395358ffdfd4afe370d5b52f71408f618f781772a48971ef3b92b/bcrypt-4.2.1-cp37-abi3-manylinux_2_28_x86_64.whl", hash = "sha256:76d3e352b32f4eeb34703370e370997065d28a561e4a18afe4fef07249cb4396", size = 279067, upload-time = "2024-11-19T20:07:30.838Z" }, + { url = "https://files.pythonhosted.org/packages/4e/ef/f2cb7a0f7e1ed800a604f8ab256fb0afcf03c1540ad94ff771ce31e794aa/bcrypt-4.2.1-cp37-abi3-musllinux_1_1_aarch64.whl", hash = "sha256:b7703ede632dc945ed1172d6f24e9f30f27b1b1a067f32f68bf169c5f08d0425", size = 306851, upload-time = "2024-11-19T20:07:32.919Z" }, + { url = "https://files.pythonhosted.org/packages/de/cb/578b0023c6a5ca16a177b9044ba6bd6032277bd3ef020fb863eccd22e49b/bcrypt-4.2.1-cp37-abi3-musllinux_1_1_x86_64.whl", hash = "sha256:89df2aea2c43be1e1fa066df5f86c8ce822ab70a30e4c210968669565c0f4685", size = 310793, upload-time = "2024-11-19T20:07:34.47Z" }, + { url = "https://files.pythonhosted.org/packages/98/bc/9d501ee9d754f63d4b1086b64756c284facc3696de9b556c146279a124a5/bcrypt-4.2.1-cp37-abi3-musllinux_1_2_aarch64.whl", hash = "sha256:04e56e3fe8308a88b77e0afd20bec516f74aecf391cdd6e374f15cbed32783d6", size = 320957, upload-time = "2024-11-19T20:07:36.189Z" }, + { url = "https://files.pythonhosted.org/packages/a1/25/2ec4ce5740abc43182bfc064b9acbbf5a493991246985e8b2bfe231ead64/bcrypt-4.2.1-cp37-abi3-musllinux_1_2_x86_64.whl", hash = "sha256:cfdf3d7530c790432046c40cda41dfee8c83e29482e6a604f8930b9930e94139", size = 339958, upload-time = "2024-11-19T20:07:38.722Z" }, + { url = "https://files.pythonhosted.org/packages/6d/64/fd67788f64817727897d31e9cdeeeba3941eaad8540733c05c7eac4aa998/bcrypt-4.2.1-cp37-abi3-win32.whl", hash = "sha256:adadd36274510a01f33e6dc08f5824b97c9580583bd4487c564fc4617b328005", size = 160912, upload-time = "2024-11-19T20:07:40.255Z" }, + { url = "https://files.pythonhosted.org/packages/00/8f/fe834eaa54abbd7cab8607e5020fa3a0557e929555b9e4ca404b4adaab06/bcrypt-4.2.1-cp37-abi3-win_amd64.whl", hash = "sha256:8c458cd103e6c5d1d85cf600e546a639f234964d0228909d8f8dbeebff82d526", size = 152981, upload-time = "2024-11-19T20:07:41.617Z" }, + { url = "https://files.pythonhosted.org/packages/4a/57/23b46933206daf5384b5397d9878746d2249fe9d45efaa8e1467c87d3048/bcrypt-4.2.1-cp39-abi3-macosx_10_12_universal2.whl", hash = "sha256:8ad2f4528cbf0febe80e5a3a57d7a74e6635e41af1ea5675282a33d769fba413", size = 489842, upload-time = "2024-11-19T20:07:45.275Z" }, + { url = "https://files.pythonhosted.org/packages/fd/28/3ea8a39ddd4938b6c6b6136816d72ba5e659e2d82b53d843c8c53455ac4d/bcrypt-4.2.1-cp39-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:909faa1027900f2252a9ca5dfebd25fc0ef1417943824783d1c8418dd7d6df4a", size = 272500, upload-time = "2024-11-19T20:07:47.064Z" }, + { url = "https://files.pythonhosted.org/packages/77/7f/b43622999f5d4de06237a195ac5501ac83516adf571b907228cd14bac8fe/bcrypt-4.2.1-cp39-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:cde78d385d5e93ece5479a0a87f73cd6fa26b171c786a884f955e165032b262c", size = 278368, upload-time = "2024-11-19T20:07:48.567Z" }, + { url = "https://files.pythonhosted.org/packages/50/68/f2e3959014b4d8874c747e6e171d46d3e63a3a39aaca8417a8d837eda0a8/bcrypt-4.2.1-cp39-abi3-manylinux_2_28_aarch64.whl", hash = "sha256:533e7f3bcf2f07caee7ad98124fab7499cb3333ba2274f7a36cf1daee7409d99", size = 273335, upload-time = "2024-11-19T20:07:50.17Z" }, + { url = "https://files.pythonhosted.org/packages/d6/c3/4b4bad4da852924427c651589d464ad1aa624f94dd904ddda8493b0a35e5/bcrypt-4.2.1-cp39-abi3-manylinux_2_28_x86_64.whl", hash = "sha256:687cf30e6681eeda39548a93ce9bfbb300e48b4d445a43db4298d2474d2a1e54", size = 278614, upload-time = "2024-11-19T20:07:51.604Z" }, + { url = "https://files.pythonhosted.org/packages/6e/5a/ee107961e84c41af2ac201d0460f962b6622ff391255ffd46429e9e09dc1/bcrypt-4.2.1-cp39-abi3-musllinux_1_1_aarch64.whl", hash = "sha256:041fa0155c9004eb98a232d54da05c0b41d4b8e66b6fc3cb71b4b3f6144ba837", size = 306464, upload-time = "2024-11-19T20:07:53.195Z" }, + { url = "https://files.pythonhosted.org/packages/5c/72/916e14fa12d2b1d1fc6c26ea195337419da6dd23d0bf53ac61ef3739e5c5/bcrypt-4.2.1-cp39-abi3-musllinux_1_1_x86_64.whl", hash = "sha256:f85b1ffa09240c89aa2e1ae9f3b1c687104f7b2b9d2098da4e923f1b7082d331", size = 310674, upload-time = "2024-11-19T20:07:54.526Z" }, + { url = "https://files.pythonhosted.org/packages/97/92/3dc76d8bfa23300591eec248e950f85bd78eb608c96bd4747ce4cc06acdb/bcrypt-4.2.1-cp39-abi3-musllinux_1_2_aarch64.whl", hash = "sha256:c6f5fa3775966cca251848d4d5393ab016b3afed251163c1436fefdec3b02c84", size = 320577, upload-time = "2024-11-19T20:07:56.121Z" }, + { url = "https://files.pythonhosted.org/packages/5d/ab/a6c0da5c2cf86600f74402a72b06dfe365e1a1d30783b1bbeec460fd57d1/bcrypt-4.2.1-cp39-abi3-musllinux_1_2_x86_64.whl", hash = "sha256:807261df60a8b1ccd13e6599c779014a362ae4e795f5c59747f60208daddd96d", size = 339836, upload-time = "2024-11-19T20:07:57.834Z" }, + { url = "https://files.pythonhosted.org/packages/b4/b4/e75b6e9a72a030a04362034022ebe317c5b735d04db6ad79237101ae4a5c/bcrypt-4.2.1-cp39-abi3-win32.whl", hash = "sha256:b588af02b89d9fad33e5f98f7838bf590d6d692df7153647724a7f20c186f6bf", size = 160911, upload-time = "2024-11-19T20:08:00.002Z" }, + { url = "https://files.pythonhosted.org/packages/76/b9/d51d34e6cd6d887adddb28a8680a1d34235cc45b9d6e238ce39b98199ca0/bcrypt-4.2.1-cp39-abi3-win_amd64.whl", hash = "sha256:e84e0e6f8e40a242b11bce56c313edc2be121cec3e0ec2d76fce01f6af33c07c", size = 153078, upload-time = "2024-11-19T20:08:01.436Z" }, ] [[package]] -name = "iniconfig" -version = "2.0.0" +name = "beautifulsoup4" +version = "4.13.4" source = { registry = "https://pypi.org/simple" } -sdist = { url = "https://files.pythonhosted.org/packages/d7/4b/cbd8e699e64a6f16ca3a8220661b5f83792b3017d0f79807cb8708d33913/iniconfig-2.0.0.tar.gz", hash = "sha256:2d91e135bf72d31a410b17c16da610a82cb55f6b0477d1a902134b24a455b8b3", size = 4646 } +dependencies = [ + { name = "soupsieve", marker = "sys_platform == 'linux'" }, + { name = "typing-extensions", marker = "sys_platform == 'linux'" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/d8/e4/0c4c39e18fd76d6a628d4dd8da40543d136ce2d1752bd6eeeab0791f4d6b/beautifulsoup4-4.13.4.tar.gz", hash = "sha256:dbb3c4e1ceae6aefebdaf2423247260cd062430a410e38c66f2baa50a8437195", size = 621067, upload-time = "2025-04-15T17:05:13.836Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/ef/a6/62565a6e1cf69e10f5727360368e451d4b7f58beeac6173dc9db836a5b46/iniconfig-2.0.0-py3-none-any.whl", hash = "sha256:b6a85871a79d2e3b22d2d1b94ac2824226a63c6b741c88f7ae975f18b6778374", size = 5892 }, + { url = "https://files.pythonhosted.org/packages/50/cd/30110dc0ffcf3b131156077b90e9f60ed75711223f306da4db08eff8403b/beautifulsoup4-4.13.4-py3-none-any.whl", hash = "sha256:9bbbb14bfde9d79f38b8cd5f8c7c85f4b8f2523190ebed90e950a8dea4cb1c4b", size = 187285, upload-time = "2025-04-15T17:05:12.221Z" }, ] [[package]] -name = "ipdb" -version = "0.13.13" +name = "black" +version = "25.1.0" source = { registry = "https://pypi.org/simple" } dependencies = [ - { name = "decorator", marker = "sys_platform == 'darwin' or sys_platform == 'linux'" }, - { name = "ipython", marker = "sys_platform == 'darwin' or sys_platform == 'linux'" }, + { name = "click", marker = "sys_platform == 'linux'" }, + { name = "mypy-extensions", marker = "sys_platform == 'linux'" }, + { name = "packaging", marker = "sys_platform == 'linux'" }, + { name = "pathspec", marker = "sys_platform == 'linux'" }, + { name = "platformdirs", marker = "sys_platform == 'linux'" }, ] -sdist = { url = "https://files.pythonhosted.org/packages/3d/1b/7e07e7b752017f7693a0f4d41c13e5ca29ce8cbcfdcc1fd6c4ad8c0a27a0/ipdb-0.13.13.tar.gz", hash = "sha256:e3ac6018ef05126d442af680aad863006ec19d02290561ac88b8b1c0b0cfc726", size = 17042 } +sdist = { url = "https://files.pythonhosted.org/packages/94/49/26a7b0f3f35da4b5a65f081943b7bcd22d7002f5f0fb8098ec1ff21cb6ef/black-25.1.0.tar.gz", hash = "sha256:33496d5cd1222ad73391352b4ae8da15253c5de89b93a80b3e2c8d9a19ec2666", size = 649449, upload-time = "2025-01-29T04:15:40.373Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/0c/4c/b075da0092003d9a55cf2ecc1cae9384a1ca4f650d51b00fc59875fe76f6/ipdb-0.13.13-py3-none-any.whl", hash = "sha256:45529994741c4ab6d2388bfa5d7b725c2cf7fe9deffabdb8a6113aa5ed449ed4", size = 12130 }, + { url = "https://files.pythonhosted.org/packages/7e/4f/87f596aca05c3ce5b94b8663dbfe242a12843caaa82dd3f85f1ffdc3f177/black-25.1.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:a39337598244de4bae26475f77dda852ea00a93bd4c728e09eacd827ec929df0", size = 1614372, upload-time = "2025-01-29T05:37:11.71Z" }, + { url = "https://files.pythonhosted.org/packages/e7/d0/2c34c36190b741c59c901e56ab7f6e54dad8df05a6272a9747ecef7c6036/black-25.1.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:96c1c7cd856bba8e20094e36e0f948718dc688dba4a9d78c3adde52b9e6c2299", size = 1442865, upload-time = "2025-01-29T05:37:14.309Z" }, + { url = "https://files.pythonhosted.org/packages/21/d4/7518c72262468430ead45cf22bd86c883a6448b9eb43672765d69a8f1248/black-25.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:bce2e264d59c91e52d8000d507eb20a9aca4a778731a08cfff7e5ac4a4bb7096", size = 1749699, upload-time = "2025-01-29T04:18:17.688Z" }, + { url = "https://files.pythonhosted.org/packages/58/db/4f5beb989b547f79096e035c4981ceb36ac2b552d0ac5f2620e941501c99/black-25.1.0-cp311-cp311-win_amd64.whl", hash = "sha256:172b1dbff09f86ce6f4eb8edf9dede08b1fce58ba194c87d7a4f1a5aa2f5b3c2", size = 1428028, upload-time = "2025-01-29T04:18:51.711Z" }, + { url = "https://files.pythonhosted.org/packages/83/71/3fe4741df7adf015ad8dfa082dd36c94ca86bb21f25608eb247b4afb15b2/black-25.1.0-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:4b60580e829091e6f9238c848ea6750efed72140b91b048770b64e74fe04908b", size = 1650988, upload-time = "2025-01-29T05:37:16.707Z" }, + { url = "https://files.pythonhosted.org/packages/13/f3/89aac8a83d73937ccd39bbe8fc6ac8860c11cfa0af5b1c96d081facac844/black-25.1.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:1e2978f6df243b155ef5fa7e558a43037c3079093ed5d10fd84c43900f2d8ecc", size = 1453985, upload-time = "2025-01-29T05:37:18.273Z" }, + { url = "https://files.pythonhosted.org/packages/6f/22/b99efca33f1f3a1d2552c714b1e1b5ae92efac6c43e790ad539a163d1754/black-25.1.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:3b48735872ec535027d979e8dcb20bf4f70b5ac75a8ea99f127c106a7d7aba9f", size = 1783816, upload-time = "2025-01-29T04:18:33.823Z" }, + { url = "https://files.pythonhosted.org/packages/18/7e/a27c3ad3822b6f2e0e00d63d58ff6299a99a5b3aee69fa77cd4b0076b261/black-25.1.0-cp312-cp312-win_amd64.whl", hash = "sha256:ea0213189960bda9cf99be5b8c8ce66bb054af5e9e861249cd23471bd7b0b3ba", size = 1440860, upload-time = "2025-01-29T04:19:12.944Z" }, + { url = "https://files.pythonhosted.org/packages/09/71/54e999902aed72baf26bca0d50781b01838251a462612966e9fc4891eadd/black-25.1.0-py3-none-any.whl", hash = "sha256:95e8176dae143ba9097f351d174fdaf0ccd29efb414b362ae3fd72bf0f710717", size = 207646, upload-time = "2025-01-29T04:15:38.082Z" }, ] [[package]] -name = "ipython" -version = "8.32.0" +name = "bleach" +version = "6.2.0" source = { registry = "https://pypi.org/simple" } dependencies = [ - { name = "decorator", marker = "sys_platform == 'darwin' or sys_platform == 'linux'" }, - { name = "jedi", marker = "sys_platform == 'darwin' or sys_platform == 'linux'" }, - { name = "matplotlib-inline", marker = "sys_platform == 'darwin' or sys_platform == 'linux'" }, - { name = "pexpect", marker = "sys_platform == 'darwin' or sys_platform == 'linux'" }, - { name = "prompt-toolkit", marker = "sys_platform == 'darwin' or sys_platform == 'linux'" }, - { name = "pygments", marker = "sys_platform == 'darwin' or sys_platform == 'linux'" }, - { name = "stack-data", marker = "sys_platform == 'darwin' or sys_platform == 'linux'" }, - { name = "traitlets", marker = "sys_platform == 'darwin' or sys_platform == 'linux'" }, + { name = "webencodings", marker = "sys_platform == 'linux'" }, ] -sdist = { url = "https://files.pythonhosted.org/packages/36/80/4d2a072e0db7d250f134bc11676517299264ebe16d62a8619d49a78ced73/ipython-8.32.0.tar.gz", hash = "sha256:be2c91895b0b9ea7ba49d33b23e2040c352b33eb6a519cca7ce6e0c743444251", size = 5507441 } +sdist = { url = "https://files.pythonhosted.org/packages/76/9a/0e33f5054c54d349ea62c277191c020c2d6ef1d65ab2cb1993f91ec846d1/bleach-6.2.0.tar.gz", hash = "sha256:123e894118b8a599fd80d3ec1a6d4cc7ce4e5882b1317a7e1ba69b56e95f991f", size = 203083, upload-time = "2024-10-29T18:30:40.477Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/e7/e1/f4474a7ecdb7745a820f6f6039dc43c66add40f1bcc66485607d93571af6/ipython-8.32.0-py3-none-any.whl", hash = "sha256:cae85b0c61eff1fc48b0a8002de5958b6528fa9c8defb1894da63f42613708aa", size = 825524 }, + { url = "https://files.pythonhosted.org/packages/fc/55/96142937f66150805c25c4d0f31ee4132fd33497753400734f9dfdcbdc66/bleach-6.2.0-py3-none-any.whl", hash = "sha256:117d9c6097a7c3d22fd578fcd8d35ff1e125df6736f554da4e432fdd63f31e5e", size = 163406, upload-time = "2024-10-29T18:30:38.186Z" }, +] + +[package.optional-dependencies] +css = [ + { name = "tinycss2", marker = "sys_platform == 'linux'" }, ] [[package]] -name = "jedi" -version = "0.19.2" +name = "bokeh" +version = "3.7.3" source = { registry = "https://pypi.org/simple" } dependencies = [ - { name = "parso", marker = "sys_platform == 'darwin' or sys_platform == 'linux'" }, -] -sdist = { url = "https://files.pythonhosted.org/packages/72/3a/79a912fbd4d8dd6fbb02bf69afd3bb72cf0c729bb3063c6f4498603db17a/jedi-0.19.2.tar.gz", hash = "sha256:4770dc3de41bde3966b02eb84fbcf557fb33cce26ad23da12c742fb50ecb11f0", size = 1231287 } + { name = "contourpy", marker = "sys_platform == 'linux'" }, + { name = "jinja2", marker = "sys_platform == 'linux'" }, + { name = "narwhals", marker = "sys_platform == 'linux'" }, + { name = "numpy", version = "1.24.4", source = { registry = "https://pypi.org/simple" }, marker = "(sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-trustyai') or (sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred') or (sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform == 'linux' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai') or (sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-trustyai') or (sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-tensorflowcuda') or (extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai')" }, + { name = "numpy", version = "1.26.4", source = { registry = "https://pypi.org/simple" }, marker = "(sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-elyra-preferred') or (sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-elyra-trustyai') or (sys_platform == 'linux' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (sys_platform == 'linux' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (sys_platform == 'linux' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform == 'linux' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (sys_platform == 'linux' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-datascience-image') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (sys_platform == 'linux' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm')" }, + { name = "numpy", version = "2.2.6", source = { registry = "https://pypi.org/simple" }, marker = "(sys_platform == 'linux' and extra == 'group-9-notebooks-jupyter-datascience-image') or (sys_platform == 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (sys_platform == 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-elyra-preferred') or (sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-elyra-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred') or (sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-pytorchcuda') or (sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-pytorchrocm') or (sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-pytorchcuda') or (sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-pytorchrocm') or (sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-tensorflowcuda') or (sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-tensorflowcuda') or (extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm')" }, + { name = "packaging", marker = "sys_platform == 'linux'" }, + { name = "pandas", version = "1.5.3", source = { registry = "https://pypi.org/simple" }, marker = "(sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-trustyai') or (sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred') or (sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform == 'linux' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai') or (sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-trustyai') or (sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-tensorflowcuda') or (extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai')" }, + { name = "pandas", version = "2.2.3", source = { registry = "https://pypi.org/simple" }, marker = "(sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-elyra-preferred') or (sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-datascience-image') or (sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-elyra-preferred') or (sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-elyra-trustyai') or (sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-elyra-trustyai') or (sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-datascience-image') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-trustyai') or (sys_platform == 'linux' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (sys_platform == 'linux' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (sys_platform == 'linux' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (sys_platform == 'linux' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (sys_platform == 'linux' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda') or (sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchrocm') or (sys_platform == 'linux' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-tensorflowcuda') or (extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm')" }, + { name = "pillow", marker = "sys_platform == 'linux'" }, + { name = "pyyaml", marker = "sys_platform == 'linux'" }, + { name = "tornado", marker = "sys_platform == 'linux'" }, + { name = "xyzservices", marker = "sys_platform == 'linux'" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/75/18/12d0d6024177ad18ba65deffc363046d0cbafe116f8b964a9efa85d2800f/bokeh-3.7.3.tar.gz", hash = "sha256:70a89a9f797b103d5ee6ad15fb7944adda115cf0da996ed0b75cfba61cb12f2b", size = 6366610, upload-time = "2025-05-12T12:13:29.318Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/c0/5a/9cac0c82afec3d09ccd97c8b6502d48f165f9124db81b4bcb90b4af974ee/jedi-0.19.2-py2.py3-none-any.whl", hash = "sha256:a8ef22bde8490f57fe5c7681a3c83cb58874daf72b4784de3cce5b6ef6edb5b9", size = 1572278 }, + { url = "https://files.pythonhosted.org/packages/91/48/08b2382e739236aa3360b7976360ba3e0c043b6234e25951c18c1eb6fa06/bokeh-3.7.3-py3-none-any.whl", hash = "sha256:b0e79dd737f088865212e4fdcb0f3b95d087f0f088bf8ca186a300ab1641e2c7", size = 7031447, upload-time = "2025-05-12T12:13:27.47Z" }, ] [[package]] -name = "jinja2" -version = "3.1.5" +name = "boto3" +version = "1.37.38" source = { registry = "https://pypi.org/simple" } dependencies = [ - { name = "markupsafe", marker = "sys_platform == 'darwin' or sys_platform == 'linux'" }, + { name = "botocore", marker = "sys_platform == 'linux'" }, + { name = "jmespath", marker = "sys_platform == 'linux'" }, + { name = "s3transfer", marker = "sys_platform == 'linux'" }, ] -sdist = { url = "https://files.pythonhosted.org/packages/af/92/b3130cbbf5591acf9ade8708c365f3238046ac7cb8ccba6e81abccb0ccff/jinja2-3.1.5.tar.gz", hash = "sha256:8fefff8dc3034e27bb80d67c671eb8a9bc424c0ef4c0826edbff304cceff43bb", size = 244674 } +sdist = { url = "https://files.pythonhosted.org/packages/0d/b5/d1c2e8c484cea43891629bbab6ca90ce9ca932586750bc0e786c8f096ccf/boto3-1.37.38.tar.gz", hash = "sha256:88c02910933ab7777597d1ca7c62375f52822e0aa1a8e0c51b2598a547af42b2", size = 111623, upload-time = "2025-04-21T19:27:18.06Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/bd/0f/2ba5fbcd631e3e88689309dbe978c5769e883e4b84ebfe7da30b43275c5a/jinja2-3.1.5-py3-none-any.whl", hash = "sha256:aba0f4dc9ed8013c424088f68a5c226f7d6097ed89b246d7749c2ec4175c6adb", size = 134596 }, + { url = "https://files.pythonhosted.org/packages/d3/87/8189f22ee798177bc7b40afd13f046442c5f91b699e70a950b42ff447e80/boto3-1.37.38-py3-none-any.whl", hash = "sha256:b6d42803607148804dff82389757827a24ce9271f0583748853934c86310999f", size = 139922, upload-time = "2025-04-21T19:27:16.107Z" }, ] [[package]] -name = "kubernetes" -version = "32.0.1" +name = "botocore" +version = "1.37.38" source = { registry = "https://pypi.org/simple" } dependencies = [ - { name = "certifi", marker = "sys_platform == 'darwin' or sys_platform == 'linux'" }, - { name = "durationpy", marker = "sys_platform == 'darwin' or sys_platform == 'linux'" }, - { name = "google-auth", marker = "sys_platform == 'darwin' or sys_platform == 'linux'" }, - { name = "oauthlib", marker = "sys_platform == 'darwin' or sys_platform == 'linux'" }, - { name = "python-dateutil", marker = "sys_platform == 'darwin' or sys_platform == 'linux'" }, - { name = "pyyaml", marker = "sys_platform == 'darwin' or sys_platform == 'linux'" }, - { name = "requests", marker = "sys_platform == 'darwin' or sys_platform == 'linux'" }, - { name = "requests-oauthlib", marker = "sys_platform == 'darwin' or sys_platform == 'linux'" }, - { name = "six", marker = "sys_platform == 'darwin' or sys_platform == 'linux'" }, - { name = "urllib3", marker = "sys_platform == 'darwin' or sys_platform == 'linux'" }, - { name = "websocket-client", marker = "sys_platform == 'darwin' or sys_platform == 'linux'" }, + { name = "jmespath", marker = "sys_platform == 'linux'" }, + { name = "python-dateutil", marker = "sys_platform == 'linux'" }, + { name = "urllib3", marker = "sys_platform == 'linux'" }, ] -sdist = { url = "https://files.pythonhosted.org/packages/b7/e8/0598f0e8b4af37cd9b10d8b87386cf3173cb8045d834ab5f6ec347a758b3/kubernetes-32.0.1.tar.gz", hash = "sha256:42f43d49abd437ada79a79a16bd48a604d3471a117a8347e87db693f2ba0ba28", size = 946691 } +sdist = { url = "https://files.pythonhosted.org/packages/34/79/4e072e614339727f79afef704e5993b5b4d2667c1671c757cc4deb954744/botocore-1.37.38.tar.gz", hash = "sha256:c3ea386177171f2259b284db6afc971c959ec103fa2115911c4368bea7cbbc5d", size = 13832365, upload-time = "2025-04-21T19:27:05.245Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/08/10/9f8af3e6f569685ce3af7faab51c8dd9d93b9c38eba339ca31c746119447/kubernetes-32.0.1-py2.py3-none-any.whl", hash = "sha256:35282ab8493b938b08ab5526c7ce66588232df00ef5e1dbe88a419107dc10998", size = 1988070 }, + { url = "https://files.pythonhosted.org/packages/55/1b/93f3504afc7c523dcaa8a8147cfc75421983e30b08d9f93a533929589630/botocore-1.37.38-py3-none-any.whl", hash = "sha256:23b4097780e156a4dcaadfc1ed156ce25cb95b6087d010c4bb7f7f5d9bc9d219", size = 13499391, upload-time = "2025-04-21T19:27:00.869Z" }, ] [[package]] -name = "markdown-it-py" -version = "3.0.0" +name = "cachetools" +version = "5.5.2" source = { registry = "https://pypi.org/simple" } -dependencies = [ - { name = "mdurl", marker = "sys_platform == 'darwin' or sys_platform == 'linux'" }, -] -sdist = { url = "https://files.pythonhosted.org/packages/38/71/3b932df36c1a044d397a1f92d1cf91ee0a503d91e470cbd670aa66b07ed0/markdown-it-py-3.0.0.tar.gz", hash = "sha256:e3f60a94fa066dc52ec76661e37c851cb232d92f9886b15cb560aaada2df8feb", size = 74596 } +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/42/d7/1ec15b46af6af88f19b8e5ffea08fa375d433c998b8a7639e76935c14f1f/markdown_it_py-3.0.0-py3-none-any.whl", hash = "sha256:355216845c60bd96232cd8d8c40e8f9765cc86f46880e43a8fd22dc1a1a8cab1", size = 87528 }, + { 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 = "markupsafe" -version = "3.0.2" +name = "certifi" +version = "2025.1.31" 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 } +sdist = { url = "https://files.pythonhosted.org/packages/1c/ab/c9f1e32b7b1bf505bf26f0ef697775960db7932abeb7b516de930ba2705f/certifi-2025.1.31.tar.gz", hash = "sha256:3d5da6925056f6f18f119200434a4780a94263f10d1c21d032a6f6b2baa20651", size = 167577, upload-time = "2025-01-31T02:16:47.166Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/22/09/d1f21434c97fc42f09d290cbb6350d44eb12f09cc62c9476effdb33a18aa/MarkupSafe-3.0.2-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:9778bd8ab0a994ebf6f84c2b949e65736d5575320a17ae8984a77fab08db94cf", size = 14274 }, - { url = "https://files.pythonhosted.org/packages/6b/b0/18f76bba336fa5aecf79d45dcd6c806c280ec44538b3c13671d49099fdd0/MarkupSafe-3.0.2-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:846ade7b71e3536c4e56b386c2a47adf5741d2d8b94ec9dc3e92e5e1ee1e2225", size = 12348 }, - { url = "https://files.pythonhosted.org/packages/e0/25/dd5c0f6ac1311e9b40f4af06c78efde0f3b5cbf02502f8ef9501294c425b/MarkupSafe-3.0.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1c99d261bd2d5f6b59325c92c73df481e05e57f19837bdca8413b9eac4bd8028", size = 24149 }, - { url = "https://files.pythonhosted.org/packages/f3/f0/89e7aadfb3749d0f52234a0c8c7867877876e0a20b60e2188e9850794c17/MarkupSafe-3.0.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e17c96c14e19278594aa4841ec148115f9c7615a47382ecb6b82bd8fea3ab0c8", size = 23118 }, - { url = "https://files.pythonhosted.org/packages/d5/da/f2eeb64c723f5e3777bc081da884b414671982008c47dcc1873d81f625b6/MarkupSafe-3.0.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:88416bd1e65dcea10bc7569faacb2c20ce071dd1f87539ca2ab364bf6231393c", size = 22993 }, - { url = "https://files.pythonhosted.org/packages/da/0e/1f32af846df486dce7c227fe0f2398dc7e2e51d4a370508281f3c1c5cddc/MarkupSafe-3.0.2-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:2181e67807fc2fa785d0592dc2d6206c019b9502410671cc905d132a92866557", size = 24178 }, - { url = "https://files.pythonhosted.org/packages/c4/f6/bb3ca0532de8086cbff5f06d137064c8410d10779c4c127e0e47d17c0b71/MarkupSafe-3.0.2-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:52305740fe773d09cffb16f8ed0427942901f00adedac82ec8b67752f58a1b22", size = 23319 }, - { url = "https://files.pythonhosted.org/packages/a2/82/8be4c96ffee03c5b4a034e60a31294daf481e12c7c43ab8e34a1453ee48b/MarkupSafe-3.0.2-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:ad10d3ded218f1039f11a75f8091880239651b52e9bb592ca27de44eed242a48", size = 23352 }, + { url = "https://files.pythonhosted.org/packages/38/fc/bce832fd4fd99766c04d1ee0eead6b0ec6486fb100ae5e74c1d91292b982/certifi-2025.1.31-py3-none-any.whl", hash = "sha256:ca78db4565a652026a4db2bcdf68f2fb589ea80d0be70e03929ed730746b84fe", size = 166393, upload-time = "2025-01-31T02:16:45.015Z" }, ] [[package]] -name = "matplotlib-inline" -version = "0.1.7" +name = "cffi" +version = "1.17.1" source = { registry = "https://pypi.org/simple" } dependencies = [ - { name = "traitlets", marker = "sys_platform == 'darwin' or sys_platform == 'linux'" }, + { name = "pycparser", marker = "sys_platform == 'linux'" }, ] -sdist = { url = "https://files.pythonhosted.org/packages/99/5b/a36a337438a14116b16480db471ad061c36c3694df7c2084a0da7ba538b7/matplotlib_inline-0.1.7.tar.gz", hash = "sha256:8423b23ec666be3d16e16b60bdd8ac4e86e840ebd1dd11a30b9f117f2fa0ab90", size = 8159 } +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/8f/8e/9ad090d3553c280a8060fbf6e24dc1c0c29704ee7d1c372f0c174aa59285/matplotlib_inline-0.1.7-py3-none-any.whl", hash = "sha256:df192d39a4ff8f21b1895d72e6a13f5fcc5099f00fa84384e0ea28c2cc0653ca", size = 9899 }, + { url = "https://files.pythonhosted.org/packages/6b/f4/927e3a8899e52a27fa57a48607ff7dc91a9ebe97399b357b85a0c7892e00/cffi-1.17.1-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:a45e3c6913c5b87b3ff120dcdc03f6131fa0065027d0ed7ee6190736a74cd401", size = 182264, upload-time = "2024-09-04T20:43:51.124Z" }, + { url = "https://files.pythonhosted.org/packages/6c/f5/6c3a8efe5f503175aaddcbea6ad0d2c96dad6f5abb205750d1b3df44ef29/cffi-1.17.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:30c5e0cb5ae493c04c8b42916e52ca38079f1b235c2f8ae5f4527b963c401caf", size = 178651, upload-time = "2024-09-04T20:43:52.872Z" }, + { url = "https://files.pythonhosted.org/packages/94/dd/a3f0118e688d1b1a57553da23b16bdade96d2f9bcda4d32e7d2838047ff7/cffi-1.17.1-cp311-cp311-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:f75c7ab1f9e4aca5414ed4d8e5c0e303a34f4421f8a0d47a4d019ceff0ab6af4", size = 445259, upload-time = "2024-09-04T20:43:56.123Z" }, + { url = "https://files.pythonhosted.org/packages/2e/ea/70ce63780f096e16ce8588efe039d3c4f91deb1dc01e9c73a287939c79a6/cffi-1.17.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a1ed2dd2972641495a3ec98445e09766f077aee98a1c896dcb4ad0d303628e41", size = 469200, upload-time = "2024-09-04T20:43:57.891Z" }, + { url = "https://files.pythonhosted.org/packages/1c/a0/a4fa9f4f781bda074c3ddd57a572b060fa0df7655d2a4247bbe277200146/cffi-1.17.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:46bf43160c1a35f7ec506d254e5c890f3c03648a4dbac12d624e4490a7046cd1", size = 477235, upload-time = "2024-09-04T20:44:00.18Z" }, + { url = "https://files.pythonhosted.org/packages/62/12/ce8710b5b8affbcdd5c6e367217c242524ad17a02fe5beec3ee339f69f85/cffi-1.17.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:a24ed04c8ffd54b0729c07cee15a81d964e6fee0e3d4d342a27b020d22959dc6", size = 459721, upload-time = "2024-09-04T20:44:01.585Z" }, + { url = "https://files.pythonhosted.org/packages/ff/6b/d45873c5e0242196f042d555526f92aa9e0c32355a1be1ff8c27f077fd37/cffi-1.17.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:610faea79c43e44c71e1ec53a554553fa22321b65fae24889706c0a84d4ad86d", size = 467242, upload-time = "2024-09-04T20:44:03.467Z" }, + { url = "https://files.pythonhosted.org/packages/1a/52/d9a0e523a572fbccf2955f5abe883cfa8bcc570d7faeee06336fbd50c9fc/cffi-1.17.1-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:a9b15d491f3ad5d692e11f6b71f7857e7835eb677955c00cc0aefcd0669adaf6", size = 477999, upload-time = "2024-09-04T20:44:05.023Z" }, + { url = "https://files.pythonhosted.org/packages/44/74/f2a2460684a1a2d00ca799ad880d54652841a780c4c97b87754f660c7603/cffi-1.17.1-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:de2ea4b5833625383e464549fec1bc395c1bdeeb5f25c4a3a82b5a8c756ec22f", size = 454242, upload-time = "2024-09-04T20:44:06.444Z" }, + { url = "https://files.pythonhosted.org/packages/f8/4a/34599cac7dfcd888ff54e801afe06a19c17787dfd94495ab0c8d35fe99fb/cffi-1.17.1-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:fc48c783f9c87e60831201f2cce7f3b2e4846bf4d8728eabe54d60700b318a0b", size = 478604, upload-time = "2024-09-04T20:44:08.206Z" }, + { url = "https://files.pythonhosted.org/packages/34/33/e1b8a1ba29025adbdcda5fb3a36f94c03d771c1b7b12f726ff7fef2ebe36/cffi-1.17.1-cp311-cp311-win32.whl", hash = "sha256:85a950a4ac9c359340d5963966e3e0a94a676bd6245a4b55bc43949eee26a655", size = 171727, upload-time = "2024-09-04T20:44:09.481Z" }, + { url = "https://files.pythonhosted.org/packages/3d/97/50228be003bb2802627d28ec0627837ac0bf35c90cf769812056f235b2d1/cffi-1.17.1-cp311-cp311-win_amd64.whl", hash = "sha256:caaf0640ef5f5517f49bc275eca1406b0ffa6aa184892812030f04c2abf589a0", size = 181400, upload-time = "2024-09-04T20:44:10.873Z" }, + { url = "https://files.pythonhosted.org/packages/5a/84/e94227139ee5fb4d600a7a4927f322e1d4aea6fdc50bd3fca8493caba23f/cffi-1.17.1-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:805b4371bf7197c329fcb3ead37e710d1bca9da5d583f5073b799d5c5bd1eee4", size = 183178, upload-time = "2024-09-04T20:44:12.232Z" }, + { url = "https://files.pythonhosted.org/packages/da/ee/fb72c2b48656111c4ef27f0f91da355e130a923473bf5ee75c5643d00cca/cffi-1.17.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:733e99bc2df47476e3848417c5a4540522f234dfd4ef3ab7fafdf555b082ec0c", size = 178840, upload-time = "2024-09-04T20:44:13.739Z" }, + { url = "https://files.pythonhosted.org/packages/cc/b6/db007700f67d151abadf508cbfd6a1884f57eab90b1bb985c4c8c02b0f28/cffi-1.17.1-cp312-cp312-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:1257bdabf294dceb59f5e70c64a3e2f462c30c7ad68092d01bbbfb1c16b1ba36", size = 454803, upload-time = "2024-09-04T20:44:15.231Z" }, + { url = "https://files.pythonhosted.org/packages/1a/df/f8d151540d8c200eb1c6fba8cd0dfd40904f1b0682ea705c36e6c2e97ab3/cffi-1.17.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:da95af8214998d77a98cc14e3a3bd00aa191526343078b530ceb0bd710fb48a5", size = 478850, upload-time = "2024-09-04T20:44:17.188Z" }, + { url = "https://files.pythonhosted.org/packages/28/c0/b31116332a547fd2677ae5b78a2ef662dfc8023d67f41b2a83f7c2aa78b1/cffi-1.17.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:d63afe322132c194cf832bfec0dc69a99fb9bb6bbd550f161a49e9e855cc78ff", size = 485729, upload-time = "2024-09-04T20:44:18.688Z" }, + { url = "https://files.pythonhosted.org/packages/91/2b/9a1ddfa5c7f13cab007a2c9cc295b70fbbda7cb10a286aa6810338e60ea1/cffi-1.17.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:f79fc4fc25f1c8698ff97788206bb3c2598949bfe0fef03d299eb1b5356ada99", size = 471256, upload-time = "2024-09-04T20:44:20.248Z" }, + { url = "https://files.pythonhosted.org/packages/b2/d5/da47df7004cb17e4955df6a43d14b3b4ae77737dff8bf7f8f333196717bf/cffi-1.17.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b62ce867176a75d03a665bad002af8e6d54644fad99a3c70905c543130e39d93", size = 479424, upload-time = "2024-09-04T20:44:21.673Z" }, + { url = "https://files.pythonhosted.org/packages/0b/ac/2a28bcf513e93a219c8a4e8e125534f4f6db03e3179ba1c45e949b76212c/cffi-1.17.1-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:386c8bf53c502fff58903061338ce4f4950cbdcb23e2902d86c0f722b786bbe3", size = 484568, upload-time = "2024-09-04T20:44:23.245Z" }, + { url = "https://files.pythonhosted.org/packages/d4/38/ca8a4f639065f14ae0f1d9751e70447a261f1a30fa7547a828ae08142465/cffi-1.17.1-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:4ceb10419a9adf4460ea14cfd6bc43d08701f0835e979bf821052f1805850fe8", size = 488736, upload-time = "2024-09-04T20:44:24.757Z" }, + { url = "https://files.pythonhosted.org/packages/86/c5/28b2d6f799ec0bdecf44dced2ec5ed43e0eb63097b0f58c293583b406582/cffi-1.17.1-cp312-cp312-win32.whl", hash = "sha256:a08d7e755f8ed21095a310a693525137cfe756ce62d066e53f502a83dc550f65", size = 172448, upload-time = "2024-09-04T20:44:26.208Z" }, + { url = "https://files.pythonhosted.org/packages/50/b9/db34c4755a7bd1cb2d1603ac3863f22bcecbd1ba29e5ee841a4bc510b294/cffi-1.17.1-cp312-cp312-win_amd64.whl", hash = "sha256:51392eae71afec0d0c8fb1a53b204dbb3bcabcb3c9b807eedf3e1e6ccf2de903", size = 181976, upload-time = "2024-09-04T20:44:27.578Z" }, ] [[package]] -name = "mdurl" -version = "0.1.2" +name = "cfgv" +version = "3.4.0" source = { registry = "https://pypi.org/simple" } -sdist = { url = "https://files.pythonhosted.org/packages/d6/54/cfe61301667036ec958cb99bd3efefba235e65cdeb9c84d24a8293ba1d90/mdurl-0.1.2.tar.gz", hash = "sha256:bb413d29f5eea38f31dd4754dd7377d4465116fb207585f97bf925588687c1ba", size = 8729 } +sdist = { url = "https://files.pythonhosted.org/packages/11/74/539e56497d9bd1d484fd863dd69cbbfa653cd2aa27abfe35653494d85e94/cfgv-3.4.0.tar.gz", hash = "sha256:e52591d4c5f5dead8e0f673fb16db7949d2cfb3f7da4582893288f0ded8fe560", size = 7114, upload-time = "2023-08-12T20:38:17.776Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/b3/38/89ba8ad64ae25be8de66a6d463314cf1eb366222074cfda9ee839c56a4b4/mdurl-0.1.2-py3-none-any.whl", hash = "sha256:84008a41e51615a49fc9966191ff91509e3c40b939176e643fd50a5c2196b8f8", size = 9979 }, + { url = "https://files.pythonhosted.org/packages/c5/55/51844dd50c4fc7a33b653bfaba4c2456f06955289ca770a5dbd5fd267374/cfgv-3.4.0-py2.py3-none-any.whl", hash = "sha256:b7265b1f29fd3316bfcd2b330d63d024f2bfd8bcb8b0272f8e19a504856c48f9", size = 7249, upload-time = "2023-08-12T20:38:16.269Z" }, ] [[package]] -name = "netaddr" -version = "1.3.0" +name = "charset-normalizer" +version = "3.4.1" source = { registry = "https://pypi.org/simple" } -sdist = { url = "https://files.pythonhosted.org/packages/54/90/188b2a69654f27b221fba92fda7217778208532c962509e959a9cee5229d/netaddr-1.3.0.tar.gz", hash = "sha256:5c3c3d9895b551b763779ba7db7a03487dc1f8e3b385af819af341ae9ef6e48a", size = 2260504 } +sdist = { url = "https://files.pythonhosted.org/packages/16/b0/572805e227f01586461c80e0fd25d65a2115599cc9dad142fee4b747c357/charset_normalizer-3.4.1.tar.gz", hash = "sha256:44251f18cd68a75b56585dd00dae26183e102cd5e0f9f1466e6df5da2ed64ea3", size = 123188, upload-time = "2024-12-24T18:12:35.43Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/12/cc/f4fe2c7ce68b92cbf5b2d379ca366e1edae38cccaad00f69f529b460c3ef/netaddr-1.3.0-py3-none-any.whl", hash = "sha256:c2c6a8ebe5554ce33b7d5b3a306b71bbb373e000bbbf2350dd5213cc56e3dbbe", size = 2262023 }, + { url = "https://files.pythonhosted.org/packages/72/80/41ef5d5a7935d2d3a773e3eaebf0a9350542f2cab4eac59a7a4741fbbbbe/charset_normalizer-3.4.1-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:8bfa33f4f2672964266e940dd22a195989ba31669bd84629f05fab3ef4e2d125", size = 194995, upload-time = "2024-12-24T18:10:12.838Z" }, + { url = "https://files.pythonhosted.org/packages/7a/28/0b9fefa7b8b080ec492110af6d88aa3dea91c464b17d53474b6e9ba5d2c5/charset_normalizer-3.4.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:28bf57629c75e810b6ae989f03c0828d64d6b26a5e205535585f96093e405ed1", size = 139471, upload-time = "2024-12-24T18:10:14.101Z" }, + { url = "https://files.pythonhosted.org/packages/71/64/d24ab1a997efb06402e3fc07317e94da358e2585165930d9d59ad45fcae2/charset_normalizer-3.4.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:f08ff5e948271dc7e18a35641d2f11a4cd8dfd5634f55228b691e62b37125eb3", size = 149831, upload-time = "2024-12-24T18:10:15.512Z" }, + { url = "https://files.pythonhosted.org/packages/37/ed/be39e5258e198655240db5e19e0b11379163ad7070962d6b0c87ed2c4d39/charset_normalizer-3.4.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:234ac59ea147c59ee4da87a0c0f098e9c8d169f4dc2a159ef720f1a61bbe27cd", size = 142335, upload-time = "2024-12-24T18:10:18.369Z" }, + { url = "https://files.pythonhosted.org/packages/88/83/489e9504711fa05d8dde1574996408026bdbdbd938f23be67deebb5eca92/charset_normalizer-3.4.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:fd4ec41f914fa74ad1b8304bbc634b3de73d2a0889bd32076342a573e0779e00", size = 143862, upload-time = "2024-12-24T18:10:19.743Z" }, + { url = "https://files.pythonhosted.org/packages/c6/c7/32da20821cf387b759ad24627a9aca289d2822de929b8a41b6241767b461/charset_normalizer-3.4.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:eea6ee1db730b3483adf394ea72f808b6e18cf3cb6454b4d86e04fa8c4327a12", size = 145673, upload-time = "2024-12-24T18:10:21.139Z" }, + { url = "https://files.pythonhosted.org/packages/68/85/f4288e96039abdd5aeb5c546fa20a37b50da71b5cf01e75e87f16cd43304/charset_normalizer-3.4.1-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:c96836c97b1238e9c9e3fe90844c947d5afbf4f4c92762679acfe19927d81d77", size = 140211, upload-time = "2024-12-24T18:10:22.382Z" }, + { url = "https://files.pythonhosted.org/packages/28/a3/a42e70d03cbdabc18997baf4f0227c73591a08041c149e710045c281f97b/charset_normalizer-3.4.1-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:4d86f7aff21ee58f26dcf5ae81a9addbd914115cdebcbb2217e4f0ed8982e146", size = 148039, upload-time = "2024-12-24T18:10:24.802Z" }, + { url = "https://files.pythonhosted.org/packages/85/e4/65699e8ab3014ecbe6f5c71d1a55d810fb716bbfd74f6283d5c2aa87febf/charset_normalizer-3.4.1-cp311-cp311-musllinux_1_2_ppc64le.whl", hash = "sha256:09b5e6733cbd160dcc09589227187e242a30a49ca5cefa5a7edd3f9d19ed53fd", size = 151939, upload-time = "2024-12-24T18:10:26.124Z" }, + { url = "https://files.pythonhosted.org/packages/b1/82/8e9fe624cc5374193de6860aba3ea8070f584c8565ee77c168ec13274bd2/charset_normalizer-3.4.1-cp311-cp311-musllinux_1_2_s390x.whl", hash = "sha256:5777ee0881f9499ed0f71cc82cf873d9a0ca8af166dfa0af8ec4e675b7df48e6", size = 149075, upload-time = "2024-12-24T18:10:30.027Z" }, + { url = "https://files.pythonhosted.org/packages/3d/7b/82865ba54c765560c8433f65e8acb9217cb839a9e32b42af4aa8e945870f/charset_normalizer-3.4.1-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:237bdbe6159cff53b4f24f397d43c6336c6b0b42affbe857970cefbb620911c8", size = 144340, upload-time = "2024-12-24T18:10:32.679Z" }, + { url = "https://files.pythonhosted.org/packages/b5/b6/9674a4b7d4d99a0d2df9b215da766ee682718f88055751e1e5e753c82db0/charset_normalizer-3.4.1-cp311-cp311-win32.whl", hash = "sha256:8417cb1f36cc0bc7eaba8ccb0e04d55f0ee52df06df3ad55259b9a323555fc8b", size = 95205, upload-time = "2024-12-24T18:10:34.724Z" }, + { url = "https://files.pythonhosted.org/packages/1e/ab/45b180e175de4402dcf7547e4fb617283bae54ce35c27930a6f35b6bef15/charset_normalizer-3.4.1-cp311-cp311-win_amd64.whl", hash = "sha256:d7f50a1f8c450f3925cb367d011448c39239bb3eb4117c36a6d354794de4ce76", size = 102441, upload-time = "2024-12-24T18:10:37.574Z" }, + { url = "https://files.pythonhosted.org/packages/0a/9a/dd1e1cdceb841925b7798369a09279bd1cf183cef0f9ddf15a3a6502ee45/charset_normalizer-3.4.1-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:73d94b58ec7fecbc7366247d3b0b10a21681004153238750bb67bd9012414545", size = 196105, upload-time = "2024-12-24T18:10:38.83Z" }, + { url = "https://files.pythonhosted.org/packages/d3/8c/90bfabf8c4809ecb648f39794cf2a84ff2e7d2a6cf159fe68d9a26160467/charset_normalizer-3.4.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:dad3e487649f498dd991eeb901125411559b22e8d7ab25d3aeb1af367df5efd7", size = 140404, upload-time = "2024-12-24T18:10:44.272Z" }, + { url = "https://files.pythonhosted.org/packages/ad/8f/e410d57c721945ea3b4f1a04b74f70ce8fa800d393d72899f0a40526401f/charset_normalizer-3.4.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:c30197aa96e8eed02200a83fba2657b4c3acd0f0aa4bdc9f6c1af8e8962e0757", size = 150423, upload-time = "2024-12-24T18:10:45.492Z" }, + { url = "https://files.pythonhosted.org/packages/f0/b8/e6825e25deb691ff98cf5c9072ee0605dc2acfca98af70c2d1b1bc75190d/charset_normalizer-3.4.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:2369eea1ee4a7610a860d88f268eb39b95cb588acd7235e02fd5a5601773d4fa", size = 143184, upload-time = "2024-12-24T18:10:47.898Z" }, + { url = "https://files.pythonhosted.org/packages/3e/a2/513f6cbe752421f16d969e32f3583762bfd583848b763913ddab8d9bfd4f/charset_normalizer-3.4.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bc2722592d8998c870fa4e290c2eec2c1569b87fe58618e67d38b4665dfa680d", size = 145268, upload-time = "2024-12-24T18:10:50.589Z" }, + { url = "https://files.pythonhosted.org/packages/74/94/8a5277664f27c3c438546f3eb53b33f5b19568eb7424736bdc440a88a31f/charset_normalizer-3.4.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:ffc9202a29ab3920fa812879e95a9e78b2465fd10be7fcbd042899695d75e616", size = 147601, upload-time = "2024-12-24T18:10:52.541Z" }, + { url = "https://files.pythonhosted.org/packages/7c/5f/6d352c51ee763623a98e31194823518e09bfa48be2a7e8383cf691bbb3d0/charset_normalizer-3.4.1-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:804a4d582ba6e5b747c625bf1255e6b1507465494a40a2130978bda7b932c90b", size = 141098, upload-time = "2024-12-24T18:10:53.789Z" }, + { url = "https://files.pythonhosted.org/packages/78/d4/f5704cb629ba5ab16d1d3d741396aec6dc3ca2b67757c45b0599bb010478/charset_normalizer-3.4.1-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:0f55e69f030f7163dffe9fd0752b32f070566451afe180f99dbeeb81f511ad8d", size = 149520, upload-time = "2024-12-24T18:10:55.048Z" }, + { url = "https://files.pythonhosted.org/packages/c5/96/64120b1d02b81785f222b976c0fb79a35875457fa9bb40827678e54d1bc8/charset_normalizer-3.4.1-cp312-cp312-musllinux_1_2_ppc64le.whl", hash = "sha256:c4c3e6da02df6fa1410a7680bd3f63d4f710232d3139089536310d027950696a", size = 152852, upload-time = "2024-12-24T18:10:57.647Z" }, + { url = "https://files.pythonhosted.org/packages/84/c9/98e3732278a99f47d487fd3468bc60b882920cef29d1fa6ca460a1fdf4e6/charset_normalizer-3.4.1-cp312-cp312-musllinux_1_2_s390x.whl", hash = "sha256:5df196eb874dae23dcfb968c83d4f8fdccb333330fe1fc278ac5ceeb101003a9", size = 150488, upload-time = "2024-12-24T18:10:59.43Z" }, + { url = "https://files.pythonhosted.org/packages/13/0e/9c8d4cb99c98c1007cc11eda969ebfe837bbbd0acdb4736d228ccaabcd22/charset_normalizer-3.4.1-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:e358e64305fe12299a08e08978f51fc21fac060dcfcddd95453eabe5b93ed0e1", size = 146192, upload-time = "2024-12-24T18:11:00.676Z" }, + { url = "https://files.pythonhosted.org/packages/b2/21/2b6b5b860781a0b49427309cb8670785aa543fb2178de875b87b9cc97746/charset_normalizer-3.4.1-cp312-cp312-win32.whl", hash = "sha256:9b23ca7ef998bc739bf6ffc077c2116917eabcc901f88da1b9856b210ef63f35", size = 95550, upload-time = "2024-12-24T18:11:01.952Z" }, + { url = "https://files.pythonhosted.org/packages/21/5b/1b390b03b1d16c7e382b561c5329f83cc06623916aab983e8ab9239c7d5c/charset_normalizer-3.4.1-cp312-cp312-win_amd64.whl", hash = "sha256:6ff8a4a60c227ad87030d76e99cd1698345d4491638dfa6673027c48b3cd395f", size = 102785, upload-time = "2024-12-24T18:11:03.142Z" }, + { url = "https://files.pythonhosted.org/packages/0e/f6/65ecc6878a89bb1c23a086ea335ad4bf21a588990c3f535a227b9eea9108/charset_normalizer-3.4.1-py3-none-any.whl", hash = "sha256:d98b1668f06378c6dbefec3b92299716b931cd4e6061f3c875a71ced1780ab85", size = 49767, upload-time = "2024-12-24T18:12:32.852Z" }, ] [[package]] -name = "nodeenv" -version = "1.9.1" +name = "click" +version = "8.1.8" source = { registry = "https://pypi.org/simple" } -sdist = { url = "https://files.pythonhosted.org/packages/43/16/fc88b08840de0e0a72a2f9d8c6bae36be573e475a6326ae854bcc549fc45/nodeenv-1.9.1.tar.gz", hash = "sha256:6ec12890a2dab7946721edbfbcd91f3319c6ccc9aec47be7c7e6b7011ee6645f", size = 47437 } +sdist = { url = "https://files.pythonhosted.org/packages/b9/2e/0090cbf739cee7d23781ad4b89a9894a41538e4fcf4c31dcdd705b78eb8b/click-8.1.8.tar.gz", hash = "sha256:ed53c9d8990d83c2a27deae68e4ee337473f6330c040a31d4225c9574d16096a", size = 226593, upload-time = "2024-12-21T18:38:44.339Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/d2/1d/1b658dbd2b9fa9c4c9f32accbfc0205d532c8c6194dc0f2a4c0428e7128a/nodeenv-1.9.1-py2.py3-none-any.whl", hash = "sha256:ba11c9782d29c27c70ffbdda2d7415098754709be8a7056d79a737cd901155c9", size = 22314 }, + { url = "https://files.pythonhosted.org/packages/7e/d4/7ebdbd03970677812aac39c869717059dbb71a4cfc033ca6e5221787892c/click-8.1.8-py3-none-any.whl", hash = "sha256:63c132bbbed01578a06712a2d1f497bb62d9c1c0d329b7903a866228027263b2", size = 98188, upload-time = "2024-12-21T18:38:41.666Z" }, ] [[package]] -name = "notebooks" -version = "2025.1" -source = { virtual = "." } - -[package.dev-dependencies] -dev = [ - { name = "allure-pytest", marker = "sys_platform == 'darwin' or sys_platform == 'linux'" }, - { name = "docker", marker = "sys_platform == 'darwin' or sys_platform == 'linux'" }, - { name = "kubernetes", marker = "sys_platform == 'darwin' or sys_platform == 'linux'" }, - { name = "openshift-python-wrapper", marker = "sys_platform == 'darwin' or sys_platform == 'linux'" }, - { name = "podman", marker = "sys_platform == 'darwin' or sys_platform == 'linux'" }, - { name = "pre-commit", marker = "sys_platform == 'darwin' or sys_platform == 'linux'" }, - { name = "pydantic", marker = "sys_platform == 'darwin' or sys_platform == 'linux'" }, - { name = "pyfakefs", marker = "sys_platform == 'darwin' or sys_platform == 'linux'" }, - { name = "pyright", marker = "sys_platform == 'darwin' or sys_platform == 'linux'" }, - { name = "pytest", marker = "sys_platform == 'darwin' or sys_platform == 'linux'" }, - { name = "pytest-subtests", marker = "sys_platform == 'darwin' or sys_platform == 'linux'" }, - { name = "pyyaml", marker = "sys_platform == 'darwin' or sys_platform == 'linux'" }, - { name = "requests", marker = "sys_platform == 'darwin' or sys_platform == 'linux'" }, - { name = "ruff", marker = "sys_platform == 'darwin' or sys_platform == 'linux'" }, - { name = "testcontainers", marker = "sys_platform == 'darwin' or sys_platform == 'linux'" }, +name = "cloup" +version = "3.0.6" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "click", marker = "sys_platform == 'linux' or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai')" }, ] - -[package.metadata] - -[package.metadata.requires-dev] -dev = [ - { name = "allure-pytest" }, - { name = "docker" }, - { name = "kubernetes" }, - { name = "openshift-python-wrapper" }, - { name = "podman" }, - { name = "pre-commit" }, - { name = "pydantic" }, - { name = "pyfakefs" }, - { name = "pyright" }, - { name = "pytest" }, - { name = "pytest-subtests" }, - { name = "pyyaml" }, - { name = "requests" }, - { name = "ruff" }, - { name = "testcontainers" }, +sdist = { url = "https://files.pythonhosted.org/packages/48/59/8d1b7913dd0a4df06b864455db59da53bcc6cc99f14b84f486c170e29029/cloup-3.0.6.tar.gz", hash = "sha256:7a43e1b611b9f1e9cb3e1e0e02247154cb530df3d909fa184e377cdee6834b98", size = 229337, upload-time = "2025-02-20T23:48:45.18Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/96/df/cce3c4b562845db6741abb520619a8b38d817a3ab4b82f2b6df3be7a7dfc/cloup-3.0.6-py2.py3-none-any.whl", hash = "sha256:ce46566204318e32b3e02d97d5e89bcaa9d9c3d0b8f94d1d060bc8b7a6be9179", size = 54446, upload-time = "2025-02-20T23:48:43.104Z" }, ] [[package]] -name = "oauthlib" -version = "3.2.2" +name = "codeflare-sdk" +version = "0.27.0" source = { registry = "https://pypi.org/simple" } -sdist = { url = "https://files.pythonhosted.org/packages/6d/fa/fbf4001037904031639e6bfbfc02badfc7e12f137a8afa254df6c4c8a670/oauthlib-3.2.2.tar.gz", hash = "sha256:9859c40929662bec5d64f34d01c99e093149682a3f38915dc0655d5a633dd918", size = 177352 } +dependencies = [ + { name = "cryptography", version = "43.0.3", source = { registry = "https://pypi.org/simple" }, marker = "sys_platform == 'linux'" }, + { name = "executing", version = "1.2.0", source = { registry = "https://pypi.org/simple" }, marker = "sys_platform == 'linux'" }, + { name = "ipywidgets", marker = "sys_platform == 'linux'" }, + { name = "kubernetes", marker = "sys_platform == 'linux'" }, + { name = "openshift-client", marker = "sys_platform == 'linux'" }, + { name = "pydantic", version = "1.10.22", source = { registry = "https://pypi.org/simple" }, marker = "sys_platform == 'linux'" }, + { name = "ray", extra = ["data", "default"], marker = "(sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base') or (sys_platform == 'linux' and extra == 'group-9-notebooks-jupyter-datascience-image') or (sys_platform == 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (sys_platform == 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (sys_platform == 'linux' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (sys_platform == 'linux' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (sys_platform == 'linux' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai')" }, + { name = "rich", marker = "sys_platform == 'linux'" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/b1/94/caeafaaa74c15ca92eaad5abcff66ac23d8761b7fe5c40e127a162640ddd/codeflare_sdk-0.27.0.tar.gz", hash = "sha256:8cc0ed68ceef770b131dbd80e4e1a4105819b5fd8e28e32bd2ee1ad53b6ecc36", size = 84507, upload-time = "2025-02-14T09:25:02.037Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/7e/80/cab10959dc1faead58dc8384a781dfbf93cb4d33d50988f7a69f1b7c9bbe/oauthlib-3.2.2-py3-none-any.whl", hash = "sha256:8139f29aac13e25d502680e9e19963e83f16838d48a0d71c287fe40e7067fbca", size = 151688 }, + { url = "https://files.pythonhosted.org/packages/cd/42/849de55d69ea32798609b0fcf9215685bfda28c5513e8515baa1726beea4/codeflare_sdk-0.27.0-py3-none-any.whl", hash = "sha256:4fb42bfe8ef28cd086772d7d8926e81a98456369ecd430b5b0a2b7a1e7230836", size = 132445, upload-time = "2025-02-14T09:24:57.801Z" }, ] [[package]] -name = "openshift-python-wrapper" -version = "11.0.31" +name = "colorama" +version = "0.4.6" source = { registry = "https://pypi.org/simple" } -dependencies = [ - { name = "click", marker = "sys_platform == 'darwin' or sys_platform == 'linux'" }, - { name = "cloup", marker = "sys_platform == 'darwin' or sys_platform == 'linux'" }, - { name = "colorlog", marker = "sys_platform == 'darwin' or sys_platform == 'linux'" }, - { name = "deepdiff", marker = "sys_platform == 'darwin' or sys_platform == 'linux'" }, - { name = "jinja2", marker = "sys_platform == 'darwin' or sys_platform == 'linux'" }, - { name = "kubernetes", marker = "sys_platform == 'darwin' or sys_platform == 'linux'" }, - { name = "packaging", marker = "sys_platform == 'darwin' or sys_platform == 'linux'" }, - { name = "pyhelper-utils", marker = "sys_platform == 'darwin' or sys_platform == 'linux'" }, - { name = "pytest", marker = "sys_platform == 'darwin' or sys_platform == 'linux'" }, - { name = "pytest-cov", marker = "sys_platform == 'darwin' or sys_platform == 'linux'" }, - { name = "python-benedict", marker = "sys_platform == 'darwin' or sys_platform == 'linux'" }, - { name = "python-simple-logger", marker = "sys_platform == 'darwin' or sys_platform == 'linux'" }, - { name = "requests", marker = "sys_platform == 'darwin' or sys_platform == 'linux'" }, - { name = "rich", marker = "sys_platform == 'darwin' or sys_platform == 'linux'" }, - { name = "ruff", marker = "sys_platform == 'darwin' or sys_platform == 'linux'" }, - { name = "testcontainers", marker = "sys_platform == 'darwin' or sys_platform == 'linux'" }, - { name = "timeout-sampler", marker = "sys_platform == 'darwin' or sys_platform == 'linux'" }, - { name = "xmltodict", marker = "sys_platform == 'darwin' or sys_platform == 'linux'" }, +sdist = { url = "https://files.pythonhosted.org/packages/d8/53/6f443c9a4a8358a93a6792e2acffb9d9d5cb0a5cfd8802644b7b1c9a02e4/colorama-0.4.6.tar.gz", hash = "sha256:08695f5cb7ed6e0531a20572697297273c47b8cae5a63ffc6d6ed5c201be6e44", size = 27697, upload-time = "2022-10-25T02:36:22.414Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/d1/d6/3965ed04c63042e047cb6a3e6ed1a63a35087b6a609aa3a15ed8ac56c221/colorama-0.4.6-py2.py3-none-any.whl", hash = "sha256:4f1d9991f5acc0ca119f9d443620b77f9d6b33703e51011c16baf57afb285fc6", size = 25335, upload-time = "2022-10-25T02:36:20.889Z" }, ] -sdist = { url = "https://files.pythonhosted.org/packages/ed/09/bd17e5b37ee6cfe01238ed166b103d339c9425ec8b325f589f14efff73f2/openshift_python_wrapper-11.0.31.tar.gz", hash = "sha256:dc4a06805bfd639a2079fcc6ffa6cc9ef42e74a930680e86e7c540f1ddb6195c", size = 6654696 } [[package]] -name = "orderly-set" -version = "5.3.0" +name = "colorful" +version = "0.5.6" source = { registry = "https://pypi.org/simple" } -sdist = { url = "https://files.pythonhosted.org/packages/e7/0e/ef328b512c2595831304e51f25e9287697b7bf13be0527ca9592a2659c16/orderly_set-5.3.0.tar.gz", hash = "sha256:80b3d8fdd3d39004d9aad389eaa0eab02c71f0a0511ba3a6d54a935a6c6a0acc", size = 20026 } +sdist = { url = "https://files.pythonhosted.org/packages/fa/5f/38e40c3bc4107c39e4062d943026b8ee25154cb4b185b882f274a1ab65da/colorful-0.5.6.tar.gz", hash = "sha256:b56d5c01db1dac4898308ea889edcb113fbee3e6ec5df4bacffd61d5241b5b8d", size = 209280, upload-time = "2024-01-07T19:38:54.904Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/df/fe/8009ebb64a19cf4bdf51b16d3074375010735d8c30408efada6ce02bf37e/orderly_set-5.3.0-py3-none-any.whl", hash = "sha256:c2c0bfe604f5d3d9b24e8262a06feb612594f37aa3845650548befd7772945d1", size = 12179 }, + { url = "https://files.pythonhosted.org/packages/b3/61/39e7db0cb326c9c8f6a49fad4fc9c2f1241f05a4e10f0643fc31ce26a7e0/colorful-0.5.6-py2.py3-none-any.whl", hash = "sha256:eab8c1c809f5025ad2b5238a50bd691e26850da8cac8f90d660ede6ea1af9f1e", size = 201369, upload-time = "2024-01-07T19:38:53.29Z" }, ] [[package]] -name = "packaging" -version = "24.2" +name = "colorlog" +version = "6.9.0" source = { registry = "https://pypi.org/simple" } -sdist = { url = "https://files.pythonhosted.org/packages/d0/63/68dbb6eb2de9cb10ee4c9c14a0148804425e13c4fb20d61cce69f53106da/packaging-24.2.tar.gz", hash = "sha256:c228a6dc5e932d346bc5739379109d49e8853dd8223571c7c5b55260edc0b97f", size = 163950 } +sdist = { url = "https://files.pythonhosted.org/packages/d3/7a/359f4d5df2353f26172b3cc39ea32daa39af8de522205f512f458923e677/colorlog-6.9.0.tar.gz", hash = "sha256:bfba54a1b93b94f54e1f4fe48395725a3d92fd2a4af702f6bd70946bdc0c6ac2", size = 16624, upload-time = "2024-10-29T18:34:51.011Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/88/ef/eb23f262cca3c0c4eb7ab1933c3b1f03d021f2c48f54763065b6f0e321be/packaging-24.2-py3-none-any.whl", hash = "sha256:09abb1bccd265c01f4a3aa3f7a7db064b36514d2cba19a2f694fe6150451a759", size = 65451 }, + { url = "https://files.pythonhosted.org/packages/e3/51/9b208e85196941db2f0654ad0357ca6388ab3ed67efdbfc799f35d1f83aa/colorlog-6.9.0-py3-none-any.whl", hash = "sha256:5906e71acd67cb07a71e779c47c4bcb45fb8c2993eebe9e5adcd6a6f1b283eff", size = 11424, upload-time = "2024-10-29T18:34:49.815Z" }, ] [[package]] -name = "paramiko" -version = "3.5.1" +name = "comm" +version = "0.2.2" source = { registry = "https://pypi.org/simple" } dependencies = [ - { name = "bcrypt", marker = "sys_platform == 'darwin' or sys_platform == 'linux'" }, - { name = "cryptography", marker = "sys_platform == 'darwin' or sys_platform == 'linux'" }, - { name = "pynacl", marker = "sys_platform == 'darwin' or sys_platform == 'linux'" }, + { name = "traitlets", marker = "sys_platform == 'linux'" }, ] -sdist = { url = "https://files.pythonhosted.org/packages/7d/15/ad6ce226e8138315f2451c2aeea985bf35ee910afb477bae7477dc3a8f3b/paramiko-3.5.1.tar.gz", hash = "sha256:b2c665bc45b2b215bd7d7f039901b14b067da00f3a11e6640995fd58f2664822", size = 1566110 } +sdist = { url = "https://files.pythonhosted.org/packages/e9/a8/fb783cb0abe2b5fded9f55e5703015cdf1c9c85b3669087c538dd15a6a86/comm-0.2.2.tar.gz", hash = "sha256:3fd7a84065306e07bea1773df6eb8282de51ba82f77c72f9c85716ab11fe980e", size = 6210, upload-time = "2024-03-12T16:53:41.133Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/15/f8/c7bd0ef12954a81a1d3cea60a13946bd9a49a0036a5927770c461eade7ae/paramiko-3.5.1-py3-none-any.whl", hash = "sha256:43b9a0501fc2b5e70680388d9346cf252cfb7d00b0667c39e80eb43a408b8f61", size = 227298 }, + { url = "https://files.pythonhosted.org/packages/e6/75/49e5bfe642f71f272236b5b2d2691cf915a7283cc0ceda56357b61daa538/comm-0.2.2-py3-none-any.whl", hash = "sha256:e6fb86cb70ff661ee8c9c14e7d36d6de3b4066f1441be4063df9c5009f0a64d3", size = 7180, upload-time = "2024-03-12T16:53:39.226Z" }, ] [[package]] -name = "parso" -version = "0.8.4" +name = "contourpy" +version = "1.3.2" source = { registry = "https://pypi.org/simple" } -sdist = { url = "https://files.pythonhosted.org/packages/66/94/68e2e17afaa9169cf6412ab0f28623903be73d1b32e208d9e8e541bb086d/parso-0.8.4.tar.gz", hash = "sha256:eb3a7b58240fb99099a345571deecc0f9540ea5f4dd2fe14c2a99d6b281ab92d", size = 400609 } +dependencies = [ + { name = "numpy", version = "1.24.4", source = { registry = "https://pypi.org/simple" }, marker = "(sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-trustyai') or (sys_platform == 'linux' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (sys_platform == 'linux' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-trustyai')" }, + { name = "numpy", version = "1.26.4", source = { registry = "https://pypi.org/simple" }, marker = "(sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-tensorflow') or (sys_platform == 'linux' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (sys_platform == 'linux' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (sys_platform == 'linux' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform == 'linux' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai')" }, + { name = "numpy", version = "2.2.6", source = { registry = "https://pypi.org/simple" }, marker = "(sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-preferred') or (sys_platform == 'linux' and extra == 'group-9-notebooks-jupyter-datascience-image') or (sys_platform == 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (sys_platform == 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred') or (sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-pytorchcuda') or (sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-pytorchrocm') or (sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-pytorchcuda') or (sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-pytorchrocm') or (sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-tensorflowcuda') or (sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai')" }, +] +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/c6/ac/dac4a63f978e4dcb3c6d3a78c4d8e0192a113d288502a1216950c41b1027/parso-0.8.4-py2.py3-none-any.whl", hash = "sha256:a418670a20291dacd2dddc80c377c5c3791378ee1e8d12bffc35420643d43f18", size = 103650 }, + { url = "https://files.pythonhosted.org/packages/b3/b9/ede788a0b56fc5b071639d06c33cb893f68b1178938f3425debebe2dab78/contourpy-1.3.2-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:6a37a2fb93d4df3fc4c0e363ea4d16f83195fc09c891bc8ce072b9d084853445", size = 269636, upload-time = "2025-04-15T17:35:54.473Z" }, + { url = "https://files.pythonhosted.org/packages/e6/75/3469f011d64b8bbfa04f709bfc23e1dd71be54d05b1b083be9f5b22750d1/contourpy-1.3.2-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:b7cd50c38f500bbcc9b6a46643a40e0913673f869315d8e70de0438817cb7773", size = 254636, upload-time = "2025-04-15T17:35:58.283Z" }, + { url = "https://files.pythonhosted.org/packages/8d/2f/95adb8dae08ce0ebca4fd8e7ad653159565d9739128b2d5977806656fcd2/contourpy-1.3.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d6658ccc7251a4433eebd89ed2672c2ed96fba367fd25ca9512aa92a4b46c4f1", size = 313053, upload-time = "2025-04-15T17:36:03.235Z" }, + { url = "https://files.pythonhosted.org/packages/c3/a6/8ccf97a50f31adfa36917707fe39c9a0cbc24b3bbb58185577f119736cc9/contourpy-1.3.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:70771a461aaeb335df14deb6c97439973d253ae70660ca085eec25241137ef43", size = 352985, upload-time = "2025-04-15T17:36:08.275Z" }, + { url = "https://files.pythonhosted.org/packages/1d/b6/7925ab9b77386143f39d9c3243fdd101621b4532eb126743201160ffa7e6/contourpy-1.3.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:65a887a6e8c4cd0897507d814b14c54a8c2e2aa4ac9f7686292f9769fcf9a6ab", size = 323750, upload-time = "2025-04-15T17:36:13.29Z" }, + { url = "https://files.pythonhosted.org/packages/c2/f3/20c5d1ef4f4748e52d60771b8560cf00b69d5c6368b5c2e9311bcfa2a08b/contourpy-1.3.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:3859783aefa2b8355697f16642695a5b9792e7a46ab86da1118a4a23a51a33d7", size = 326246, upload-time = "2025-04-15T17:36:18.329Z" }, + { url = "https://files.pythonhosted.org/packages/8c/e5/9dae809e7e0b2d9d70c52b3d24cba134dd3dad979eb3e5e71f5df22ed1f5/contourpy-1.3.2-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:eab0f6db315fa4d70f1d8ab514e527f0366ec021ff853d7ed6a2d33605cf4b83", size = 1308728, upload-time = "2025-04-15T17:36:33.878Z" }, + { url = "https://files.pythonhosted.org/packages/e2/4a/0058ba34aeea35c0b442ae61a4f4d4ca84d6df8f91309bc2d43bb8dd248f/contourpy-1.3.2-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:d91a3ccc7fea94ca0acab82ceb77f396d50a1f67412efe4c526f5d20264e6ecd", size = 1375762, upload-time = "2025-04-15T17:36:51.295Z" }, + { url = "https://files.pythonhosted.org/packages/09/33/7174bdfc8b7767ef2c08ed81244762d93d5c579336fc0b51ca57b33d1b80/contourpy-1.3.2-cp311-cp311-win32.whl", hash = "sha256:1c48188778d4d2f3d48e4643fb15d8608b1d01e4b4d6b0548d9b336c28fc9b6f", size = 178196, upload-time = "2025-04-15T17:36:55.002Z" }, + { url = "https://files.pythonhosted.org/packages/5e/fe/4029038b4e1c4485cef18e480b0e2cd2d755448bb071eb9977caac80b77b/contourpy-1.3.2-cp311-cp311-win_amd64.whl", hash = "sha256:5ebac872ba09cb8f2131c46b8739a7ff71de28a24c869bcad554477eb089a878", size = 222017, upload-time = "2025-04-15T17:36:58.576Z" }, + { url = "https://files.pythonhosted.org/packages/34/f7/44785876384eff370c251d58fd65f6ad7f39adce4a093c934d4a67a7c6b6/contourpy-1.3.2-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:4caf2bcd2969402bf77edc4cb6034c7dd7c0803213b3523f111eb7460a51b8d2", size = 271580, upload-time = "2025-04-15T17:37:03.105Z" }, + { url = "https://files.pythonhosted.org/packages/93/3b/0004767622a9826ea3d95f0e9d98cd8729015768075d61f9fea8eeca42a8/contourpy-1.3.2-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:82199cb78276249796419fe36b7386bd8d2cc3f28b3bc19fe2454fe2e26c4c15", size = 255530, upload-time = "2025-04-15T17:37:07.026Z" }, + { url = "https://files.pythonhosted.org/packages/e7/bb/7bd49e1f4fa805772d9fd130e0d375554ebc771ed7172f48dfcd4ca61549/contourpy-1.3.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:106fab697af11456fcba3e352ad50effe493a90f893fca6c2ca5c033820cea92", size = 307688, upload-time = "2025-04-15T17:37:11.481Z" }, + { url = "https://files.pythonhosted.org/packages/fc/97/e1d5dbbfa170725ef78357a9a0edc996b09ae4af170927ba8ce977e60a5f/contourpy-1.3.2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:d14f12932a8d620e307f715857107b1d1845cc44fdb5da2bc8e850f5ceba9f87", size = 347331, upload-time = "2025-04-15T17:37:18.212Z" }, + { url = "https://files.pythonhosted.org/packages/6f/66/e69e6e904f5ecf6901be3dd16e7e54d41b6ec6ae3405a535286d4418ffb4/contourpy-1.3.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:532fd26e715560721bb0d5fc7610fce279b3699b018600ab999d1be895b09415", size = 318963, upload-time = "2025-04-15T17:37:22.76Z" }, + { url = "https://files.pythonhosted.org/packages/a8/32/b8a1c8965e4f72482ff2d1ac2cd670ce0b542f203c8e1d34e7c3e6925da7/contourpy-1.3.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f26b383144cf2d2c29f01a1e8170f50dacf0eac02d64139dcd709a8ac4eb3cfe", size = 323681, upload-time = "2025-04-15T17:37:33.001Z" }, + { url = "https://files.pythonhosted.org/packages/30/c6/12a7e6811d08757c7162a541ca4c5c6a34c0f4e98ef2b338791093518e40/contourpy-1.3.2-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:c49f73e61f1f774650a55d221803b101d966ca0c5a2d6d5e4320ec3997489441", size = 1308674, upload-time = "2025-04-15T17:37:48.64Z" }, + { url = "https://files.pythonhosted.org/packages/2a/8a/bebe5a3f68b484d3a2b8ffaf84704b3e343ef1addea528132ef148e22b3b/contourpy-1.3.2-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:3d80b2c0300583228ac98d0a927a1ba6a2ba6b8a742463c564f1d419ee5b211e", size = 1380480, upload-time = "2025-04-15T17:38:06.7Z" }, + { url = "https://files.pythonhosted.org/packages/34/db/fcd325f19b5978fb509a7d55e06d99f5f856294c1991097534360b307cf1/contourpy-1.3.2-cp312-cp312-win32.whl", hash = "sha256:90df94c89a91b7362e1142cbee7568f86514412ab8a2c0d0fca72d7e91b62912", size = 178489, upload-time = "2025-04-15T17:38:10.338Z" }, + { url = "https://files.pythonhosted.org/packages/01/c8/fadd0b92ffa7b5eb5949bf340a63a4a496a6930a6c37a7ba0f12acb076d6/contourpy-1.3.2-cp312-cp312-win_amd64.whl", hash = "sha256:8c942a01d9163e2e5cfb05cb66110121b8d07ad438a17f9e766317bcb62abf73", size = 223042, upload-time = "2025-04-15T17:38:14.239Z" }, + { url = "https://files.pythonhosted.org/packages/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" }, ] [[package]] -name = "pbr" -version = "6.1.1" +name = "cryptography" +version = "43.0.3" source = { registry = "https://pypi.org/simple" } +resolution-markers = [ + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", +] dependencies = [ - { name = "setuptools", marker = "sys_platform == 'darwin' or sys_platform == 'linux'" }, + { name = "cffi", marker = "(platform_python_implementation != 'PyPy' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base') or (platform_python_implementation != 'PyPy' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-datascience-image') or (platform_python_implementation != 'PyPy' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (platform_python_implementation != 'PyPy' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (platform_python_implementation != 'PyPy' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (platform_python_implementation != 'PyPy' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (platform_python_implementation != 'PyPy' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (platform_python_implementation != 'PyPy' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (platform_python_implementation != 'PyPy' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (platform_python_implementation != 'PyPy' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (platform_python_implementation != 'PyPy' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (platform_python_implementation != 'PyPy' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (platform_python_implementation == 'PyPy' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (platform_python_implementation == 'PyPy' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (platform_python_implementation == 'PyPy' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-tensorflowcuda') or (platform_python_implementation == 'PyPy' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-tensorflowrocm') or (platform_python_implementation == 'PyPy' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow') or (platform_python_implementation == 'PyPy' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-trustyai') or (platform_python_implementation == 'PyPy' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (platform_python_implementation == 'PyPy' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-trustyai') or (platform_python_implementation == 'PyPy' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai') or (platform_python_implementation == 'PyPy' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-datascience-image') or (platform_python_implementation == 'PyPy' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (platform_python_implementation == 'PyPy' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (platform_python_implementation == 'PyPy' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (platform_python_implementation == 'PyPy' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-trustyai') or (platform_python_implementation == 'PyPy' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (platform_python_implementation == 'PyPy' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (platform_python_implementation == 'PyPy' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (platform_python_implementation == 'PyPy' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (platform_python_implementation == 'PyPy' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-trustyai') or (platform_python_implementation == 'PyPy' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai') or (platform_python_implementation == 'PyPy' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (platform_python_implementation == 'PyPy' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-trustyai') or (platform_python_implementation == 'PyPy' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (platform_python_implementation == 'PyPy' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (platform_python_implementation == 'PyPy' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (platform_python_implementation == 'PyPy' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (platform_python_implementation == 'PyPy' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-trustyai') or (platform_python_implementation == 'PyPy' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (platform_python_implementation == 'PyPy' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (platform_python_implementation == 'PyPy' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm') or (platform_python_implementation == 'PyPy' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-trustyai') or (platform_python_implementation == 'PyPy' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (platform_python_implementation == 'PyPy' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (platform_python_implementation == 'PyPy' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-trustyai') or (platform_python_implementation == 'PyPy' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda') or (platform_python_implementation == 'PyPy' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchrocm') or (platform_python_implementation == 'PyPy' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-trustyai') or (platform_python_implementation == 'PyPy' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (platform_python_implementation == 'PyPy' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (platform_python_implementation == 'PyPy' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (platform_python_implementation == 'PyPy' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (platform_python_implementation == 'PyPy' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (platform_python_implementation == 'PyPy' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (platform_python_implementation == 'PyPy' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (platform_python_implementation == 'PyPy' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (platform_python_implementation == 'PyPy' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (platform_python_implementation == 'PyPy' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowcuda') or (platform_python_implementation == 'PyPy' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowrocm') or (platform_python_implementation == 'PyPy' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-trustyai') or (platform_python_implementation == 'PyPy' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (platform_python_implementation == 'PyPy' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (platform_python_implementation == 'PyPy' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (platform_python_implementation == 'PyPy' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (platform_python_implementation == 'PyPy' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm') or (platform_python_implementation == 'PyPy' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowcuda') or (platform_python_implementation == 'PyPy' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowrocm') or (platform_python_implementation == 'PyPy' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-trustyai') or (platform_python_implementation == 'PyPy' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (platform_python_implementation == 'PyPy' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (platform_python_implementation == 'PyPy' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (platform_python_implementation == 'PyPy' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (platform_python_implementation == 'PyPy' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (platform_python_implementation == 'PyPy' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (platform_python_implementation == 'PyPy' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-trustyai') or (platform_python_implementation == 'PyPy' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (platform_python_implementation == 'PyPy' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (platform_python_implementation == 'PyPy' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (platform_python_implementation == 'PyPy' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (platform_python_implementation == 'PyPy' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (platform_python_implementation == 'PyPy' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchcuda') or (platform_python_implementation == 'PyPy' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchrocm') or (platform_python_implementation == 'PyPy' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowcuda') or (platform_python_implementation == 'PyPy' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowrocm') or (platform_python_implementation == 'PyPy' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-trustyai') or (platform_python_implementation == 'PyPy' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (platform_python_implementation == 'PyPy' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (platform_python_implementation == 'PyPy' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchrocm') or (platform_python_implementation == 'PyPy' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (platform_python_implementation == 'PyPy' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (platform_python_implementation == 'PyPy' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-trustyai') or (platform_python_implementation == 'PyPy' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda') or (platform_python_implementation == 'PyPy' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchrocm') or (platform_python_implementation == 'PyPy' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowcuda') or (platform_python_implementation == 'PyPy' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowrocm') or (platform_python_implementation == 'PyPy' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-trustyai') or (platform_python_implementation == 'PyPy' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda') or (platform_python_implementation == 'PyPy' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchrocm') or (platform_python_implementation == 'PyPy' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowcuda') or (platform_python_implementation == 'PyPy' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowrocm') or (platform_python_implementation == 'PyPy' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-datascience-image') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (sys_platform != 'linux' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (sys_platform != 'linux' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (sys_platform != 'linux' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (sys_platform != 'linux' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (sys_platform != 'linux' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (sys_platform != 'linux' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-trustyai') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-tensorflowcuda') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai')" }, ] -sdist = { url = "https://files.pythonhosted.org/packages/01/d2/510cc0d218e753ba62a1bc1434651db3cd797a9716a0a66cc714cb4f0935/pbr-6.1.1.tar.gz", hash = "sha256:93ea72ce6989eb2eed99d0f75721474f69ad88128afdef5ac377eb797c4bf76b", size = 125702 } +sdist = { url = "https://files.pythonhosted.org/packages/0d/05/07b55d1fa21ac18c3a8c79f764e2514e6f6a9698f1be44994f5adf0d29db/cryptography-43.0.3.tar.gz", hash = "sha256:315b9001266a492a6ff443b61238f956b214dbec9910a081ba5b6646a055a805", size = 686989, upload-time = "2024-10-18T15:58:32.918Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/47/ac/684d71315abc7b1214d59304e23a982472967f6bf4bde5a98f1503f648dc/pbr-6.1.1-py2.py3-none-any.whl", hash = "sha256:38d4daea5d9fa63b3f626131b9d34947fd0c8be9b05a29276870580050a25a76", size = 108997 }, + { url = "https://files.pythonhosted.org/packages/1f/f3/01fdf26701a26f4b4dbc337a26883ad5bccaa6f1bbbdd29cd89e22f18a1c/cryptography-43.0.3-cp37-abi3-macosx_10_9_universal2.whl", hash = "sha256:bf7a1932ac4176486eab36a19ed4c0492da5d97123f1406cf15e41b05e787d2e", size = 6225303, upload-time = "2024-10-18T15:57:36.753Z" }, + { url = "https://files.pythonhosted.org/packages/a3/01/4896f3d1b392025d4fcbecf40fdea92d3df8662123f6835d0af828d148fd/cryptography-43.0.3-cp37-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:63efa177ff54aec6e1c0aefaa1a241232dcd37413835a9b674b6e3f0ae2bfd3e", size = 3760905, upload-time = "2024-10-18T15:57:39.166Z" }, + { url = "https://files.pythonhosted.org/packages/0a/be/f9a1f673f0ed4b7f6c643164e513dbad28dd4f2dcdf5715004f172ef24b6/cryptography-43.0.3-cp37-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:7e1ce50266f4f70bf41a2c6dc4358afadae90e2a1e5342d3c08883df1675374f", size = 3977271, upload-time = "2024-10-18T15:57:41.227Z" }, + { url = "https://files.pythonhosted.org/packages/4e/49/80c3a7b5514d1b416d7350830e8c422a4d667b6d9b16a9392ebfd4a5388a/cryptography-43.0.3-cp37-abi3-manylinux_2_28_aarch64.whl", hash = "sha256:443c4a81bb10daed9a8f334365fe52542771f25aedaf889fd323a853ce7377d6", size = 3746606, upload-time = "2024-10-18T15:57:42.903Z" }, + { url = "https://files.pythonhosted.org/packages/0e/16/a28ddf78ac6e7e3f25ebcef69ab15c2c6be5ff9743dd0709a69a4f968472/cryptography-43.0.3-cp37-abi3-manylinux_2_28_x86_64.whl", hash = "sha256:74f57f24754fe349223792466a709f8e0c093205ff0dca557af51072ff47ab18", size = 3986484, upload-time = "2024-10-18T15:57:45.434Z" }, + { url = "https://files.pythonhosted.org/packages/01/f5/69ae8da70c19864a32b0315049866c4d411cce423ec169993d0434218762/cryptography-43.0.3-cp37-abi3-musllinux_1_2_aarch64.whl", hash = "sha256:9762ea51a8fc2a88b70cf2995e5675b38d93bf36bd67d91721c309df184f49bd", size = 3852131, upload-time = "2024-10-18T15:57:47.267Z" }, + { url = "https://files.pythonhosted.org/packages/fd/db/e74911d95c040f9afd3612b1f732e52b3e517cb80de8bf183be0b7d413c6/cryptography-43.0.3-cp37-abi3-musllinux_1_2_x86_64.whl", hash = "sha256:81ef806b1fef6b06dcebad789f988d3b37ccaee225695cf3e07648eee0fc6b73", size = 4075647, upload-time = "2024-10-18T15:57:49.684Z" }, + { url = "https://files.pythonhosted.org/packages/56/48/7b6b190f1462818b324e674fa20d1d5ef3e24f2328675b9b16189cbf0b3c/cryptography-43.0.3-cp37-abi3-win32.whl", hash = "sha256:cbeb489927bd7af4aa98d4b261af9a5bc025bd87f0e3547e11584be9e9427be2", size = 2623873, upload-time = "2024-10-18T15:57:51.822Z" }, + { url = "https://files.pythonhosted.org/packages/eb/b1/0ebff61a004f7f89e7b65ca95f2f2375679d43d0290672f7713ee3162aff/cryptography-43.0.3-cp37-abi3-win_amd64.whl", hash = "sha256:f46304d6f0c6ab8e52770addfa2fc41e6629495548862279641972b6215451cd", size = 3068039, upload-time = "2024-10-18T15:57:54.426Z" }, + { url = "https://files.pythonhosted.org/packages/30/d5/c8b32c047e2e81dd172138f772e81d852c51f0f2ad2ae8a24f1122e9e9a7/cryptography-43.0.3-cp39-abi3-macosx_10_9_universal2.whl", hash = "sha256:8ac43ae87929a5982f5948ceda07001ee5e83227fd69cf55b109144938d96984", size = 6222984, upload-time = "2024-10-18T15:57:56.174Z" }, + { url = "https://files.pythonhosted.org/packages/2f/78/55356eb9075d0be6e81b59f45c7b48df87f76a20e73893872170471f3ee8/cryptography-43.0.3-cp39-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:846da004a5804145a5f441b8530b4bf35afbf7da70f82409f151695b127213d5", size = 3762968, upload-time = "2024-10-18T15:57:58.206Z" }, + { url = "https://files.pythonhosted.org/packages/2a/2c/488776a3dc843f95f86d2f957ca0fc3407d0242b50bede7fad1e339be03f/cryptography-43.0.3-cp39-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:0f996e7268af62598f2fc1204afa98a3b5712313a55c4c9d434aef49cadc91d4", size = 3977754, upload-time = "2024-10-18T15:58:00.683Z" }, + { url = "https://files.pythonhosted.org/packages/7c/04/2345ca92f7a22f601a9c62961741ef7dd0127c39f7310dffa0041c80f16f/cryptography-43.0.3-cp39-abi3-manylinux_2_28_aarch64.whl", hash = "sha256:f7b178f11ed3664fd0e995a47ed2b5ff0a12d893e41dd0494f406d1cf555cab7", size = 3749458, upload-time = "2024-10-18T15:58:02.225Z" }, + { url = "https://files.pythonhosted.org/packages/ac/25/e715fa0bc24ac2114ed69da33adf451a38abb6f3f24ec207908112e9ba53/cryptography-43.0.3-cp39-abi3-manylinux_2_28_x86_64.whl", hash = "sha256:c2e6fc39c4ab499049df3bdf567f768a723a5e8464816e8f009f121a5a9f4405", size = 3988220, upload-time = "2024-10-18T15:58:04.331Z" }, + { url = "https://files.pythonhosted.org/packages/21/ce/b9c9ff56c7164d8e2edfb6c9305045fbc0df4508ccfdb13ee66eb8c95b0e/cryptography-43.0.3-cp39-abi3-musllinux_1_2_aarch64.whl", hash = "sha256:e1be4655c7ef6e1bbe6b5d0403526601323420bcf414598955968c9ef3eb7d16", size = 3853898, upload-time = "2024-10-18T15:58:06.113Z" }, + { url = "https://files.pythonhosted.org/packages/2a/33/b3682992ab2e9476b9c81fff22f02c8b0a1e6e1d49ee1750a67d85fd7ed2/cryptography-43.0.3-cp39-abi3-musllinux_1_2_x86_64.whl", hash = "sha256:df6b6c6d742395dd77a23ea3728ab62f98379eff8fb61be2744d4679ab678f73", size = 4076592, upload-time = "2024-10-18T15:58:08.673Z" }, + { url = "https://files.pythonhosted.org/packages/81/1e/ffcc41b3cebd64ca90b28fd58141c5f68c83d48563c88333ab660e002cd3/cryptography-43.0.3-cp39-abi3-win32.whl", hash = "sha256:d56e96520b1020449bbace2b78b603442e7e378a9b3bd68de65c782db1507995", size = 2623145, upload-time = "2024-10-18T15:58:10.264Z" }, + { url = "https://files.pythonhosted.org/packages/87/5c/3dab83cc4aba1f4b0e733e3f0c3e7d4386440d660ba5b1e3ff995feb734d/cryptography-43.0.3-cp39-abi3-win_amd64.whl", hash = "sha256:0c580952eef9bf68c4747774cde7ec1d85a6e61de97281f2dba83c7d2c806362", size = 3068026, upload-time = "2024-10-18T15:58:11.916Z" }, ] [[package]] -name = "pexpect" -version = "4.9.0" +name = "cryptography" +version = "44.0.1" source = { registry = "https://pypi.org/simple" } +resolution-markers = [ + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", +] dependencies = [ - { name = "ptyprocess", marker = "sys_platform == 'darwin' or sys_platform == 'linux'" }, + { name = "cffi", marker = "(platform_python_implementation != 'PyPy' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-trustyai') or (platform_python_implementation != 'PyPy' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-elyra-trustyai') or (platform_python_implementation != 'PyPy' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-elyra-trustyai') or (platform_python_implementation != 'PyPy' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image') or (platform_python_implementation != 'PyPy' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (platform_python_implementation != 'PyPy' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (platform_python_implementation != 'PyPy' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image') or (platform_python_implementation != 'PyPy' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image') or (platform_python_implementation == 'PyPy' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (platform_python_implementation == 'PyPy' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (platform_python_implementation == 'PyPy' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (platform_python_implementation == 'PyPy' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (platform_python_implementation == 'PyPy' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (platform_python_implementation == 'PyPy' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (platform_python_implementation == 'PyPy' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-tensorflowcuda') or (platform_python_implementation == 'PyPy' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-trustyai') or (platform_python_implementation == 'PyPy' and extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai') or (platform_python_implementation == 'PyPy' and extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (platform_python_implementation == 'PyPy' and extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (platform_python_implementation == 'PyPy' and extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (platform_python_implementation == 'PyPy' and extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (platform_python_implementation == 'PyPy' and extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (platform_python_implementation == 'PyPy' and extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (platform_python_implementation == 'PyPy' and extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-tensorflowcuda') or (platform_python_implementation == 'PyPy' and extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-trustyai') or (platform_python_implementation == 'PyPy' and extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai') or (platform_python_implementation == 'PyPy' and extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (platform_python_implementation == 'PyPy' and extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (platform_python_implementation == 'PyPy' and extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (platform_python_implementation == 'PyPy' and extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (platform_python_implementation == 'PyPy' and extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (platform_python_implementation == 'PyPy' and extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (platform_python_implementation == 'PyPy' and extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-trustyai') or (platform_python_implementation == 'PyPy' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai') or (platform_python_implementation == 'PyPy' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (platform_python_implementation == 'PyPy' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (platform_python_implementation == 'PyPy' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (platform_python_implementation == 'PyPy' and extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (platform_python_implementation == 'PyPy' and extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (platform_python_implementation == 'PyPy' and extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (platform_python_implementation == 'PyPy' and extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (platform_python_implementation == 'PyPy' and extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (platform_python_implementation == 'PyPy' and extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (platform_python_implementation == 'PyPy' and extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (platform_python_implementation == 'PyPy' and extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (platform_python_implementation == 'PyPy' and extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (platform_python_implementation == 'PyPy' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (platform_python_implementation == 'PyPy' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (platform_python_implementation == 'PyPy' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (platform_python_implementation == 'PyPy' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (platform_python_implementation == 'PyPy' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-trustyai') or (platform_python_implementation == 'PyPy' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (platform_python_implementation == 'PyPy' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (platform_python_implementation == 'PyPy' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (platform_python_implementation == 'PyPy' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (platform_python_implementation == 'PyPy' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-trustyai') or (platform_python_implementation == 'PyPy' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (platform_python_implementation == 'PyPy' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (platform_python_implementation == 'PyPy' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (platform_python_implementation == 'PyPy' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (platform_python_implementation == 'PyPy' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (platform_python_implementation == 'PyPy' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (platform_python_implementation == 'PyPy' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (platform_python_implementation == 'PyPy' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-trustyai') or (platform_python_implementation == 'PyPy' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (platform_python_implementation == 'PyPy' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (platform_python_implementation == 'PyPy' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (platform_python_implementation == 'PyPy' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (platform_python_implementation == 'PyPy' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (platform_python_implementation == 'PyPy' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (platform_python_implementation == 'PyPy' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (platform_python_implementation == 'PyPy' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (platform_python_implementation == 'PyPy' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (platform_python_implementation == 'PyPy' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (platform_python_implementation == 'PyPy' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (platform_python_implementation == 'PyPy' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (platform_python_implementation == 'PyPy' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (platform_python_implementation == 'PyPy' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (platform_python_implementation == 'PyPy' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-trustyai') or (platform_python_implementation == 'PyPy' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai') or (platform_python_implementation == 'PyPy' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (platform_python_implementation == 'PyPy' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (platform_python_implementation == 'PyPy' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (platform_python_implementation == 'PyPy' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (platform_python_implementation == 'PyPy' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (platform_python_implementation == 'PyPy' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (platform_python_implementation == 'PyPy' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (platform_python_implementation == 'PyPy' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (platform_python_implementation == 'PyPy' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-trustyai') or (platform_python_implementation == 'PyPy' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-datascience-image') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (sys_platform != 'linux' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (sys_platform != 'linux' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (sys_platform != 'linux' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (sys_platform != 'linux' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (sys_platform != 'linux' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (sys_platform != 'linux' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai') or (extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-trustyai')" }, ] -sdist = { url = "https://files.pythonhosted.org/packages/42/92/cc564bf6381ff43ce1f4d06852fc19a2f11d180f23dc32d9588bee2f149d/pexpect-4.9.0.tar.gz", hash = "sha256:ee7d41123f3c9911050ea2c2dac107568dc43b2d3b0c7557a33212c398ead30f", size = 166450 } +sdist = { url = "https://files.pythonhosted.org/packages/c7/67/545c79fe50f7af51dbad56d16b23fe33f63ee6a5d956b3cb68ea110cbe64/cryptography-44.0.1.tar.gz", hash = "sha256:f51f5705ab27898afda1aaa430f34ad90dc117421057782022edf0600bec5f14", size = 710819, upload-time = "2025-02-11T15:50:58.39Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/9e/c3/059298687310d527a58bb01f3b1965787ee3b40dce76752eda8b44e9a2c5/pexpect-4.9.0-py2.py3-none-any.whl", hash = "sha256:7236d1e080e4936be2dc3e326cec0af72acf9212a7e1d060210e70a47e253523", size = 63772 }, + { url = "https://files.pythonhosted.org/packages/72/27/5e3524053b4c8889da65cf7814a9d0d8514a05194a25e1e34f46852ee6eb/cryptography-44.0.1-cp37-abi3-macosx_10_9_universal2.whl", hash = "sha256:bf688f615c29bfe9dfc44312ca470989279f0e94bb9f631f85e3459af8efc009", size = 6642022, upload-time = "2025-02-11T15:49:32.752Z" }, + { url = "https://files.pythonhosted.org/packages/34/b9/4d1fa8d73ae6ec350012f89c3abfbff19fc95fe5420cf972e12a8d182986/cryptography-44.0.1-cp37-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:dd7c7e2d71d908dc0f8d2027e1604102140d84b155e658c20e8ad1304317691f", size = 3943865, upload-time = "2025-02-11T15:49:36.659Z" }, + { url = "https://files.pythonhosted.org/packages/6e/57/371a9f3f3a4500807b5fcd29fec77f418ba27ffc629d88597d0d1049696e/cryptography-44.0.1-cp37-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:887143b9ff6bad2b7570da75a7fe8bbf5f65276365ac259a5d2d5147a73775f2", size = 4162562, upload-time = "2025-02-11T15:49:39.541Z" }, + { url = "https://files.pythonhosted.org/packages/c5/1d/5b77815e7d9cf1e3166988647f336f87d5634a5ccecec2ffbe08ef8dd481/cryptography-44.0.1-cp37-abi3-manylinux_2_28_aarch64.whl", hash = "sha256:322eb03ecc62784536bc173f1483e76747aafeb69c8728df48537eb431cd1911", size = 3951923, upload-time = "2025-02-11T15:49:42.461Z" }, + { url = "https://files.pythonhosted.org/packages/28/01/604508cd34a4024467cd4105887cf27da128cba3edd435b54e2395064bfb/cryptography-44.0.1-cp37-abi3-manylinux_2_28_armv7l.manylinux_2_31_armv7l.whl", hash = "sha256:21377472ca4ada2906bc313168c9dc7b1d7ca417b63c1c3011d0c74b7de9ae69", size = 3685194, upload-time = "2025-02-11T15:49:45.226Z" }, + { url = "https://files.pythonhosted.org/packages/c6/3d/d3c55d4f1d24580a236a6753902ef6d8aafd04da942a1ee9efb9dc8fd0cb/cryptography-44.0.1-cp37-abi3-manylinux_2_28_x86_64.whl", hash = "sha256:df978682c1504fc93b3209de21aeabf2375cb1571d4e61907b3e7a2540e83026", size = 4187790, upload-time = "2025-02-11T15:49:48.215Z" }, + { url = "https://files.pythonhosted.org/packages/ea/a6/44d63950c8588bfa8594fd234d3d46e93c3841b8e84a066649c566afb972/cryptography-44.0.1-cp37-abi3-manylinux_2_34_aarch64.whl", hash = "sha256:eb3889330f2a4a148abead555399ec9a32b13b7c8ba969b72d8e500eb7ef84cd", size = 3951343, upload-time = "2025-02-11T15:49:50.313Z" }, + { url = "https://files.pythonhosted.org/packages/c1/17/f5282661b57301204cbf188254c1a0267dbd8b18f76337f0a7ce1038888c/cryptography-44.0.1-cp37-abi3-manylinux_2_34_x86_64.whl", hash = "sha256:8e6a85a93d0642bd774460a86513c5d9d80b5c002ca9693e63f6e540f1815ed0", size = 4187127, upload-time = "2025-02-11T15:49:52.051Z" }, + { url = "https://files.pythonhosted.org/packages/f3/68/abbae29ed4f9d96596687f3ceea8e233f65c9645fbbec68adb7c756bb85a/cryptography-44.0.1-cp37-abi3-musllinux_1_2_aarch64.whl", hash = "sha256:6f76fdd6fd048576a04c5210d53aa04ca34d2ed63336d4abd306d0cbe298fddf", size = 4070666, upload-time = "2025-02-11T15:49:56.56Z" }, + { url = "https://files.pythonhosted.org/packages/0f/10/cf91691064a9e0a88ae27e31779200b1505d3aee877dbe1e4e0d73b4f155/cryptography-44.0.1-cp37-abi3-musllinux_1_2_x86_64.whl", hash = "sha256:6c8acf6f3d1f47acb2248ec3ea261171a671f3d9428e34ad0357148d492c7864", size = 4288811, upload-time = "2025-02-11T15:49:59.248Z" }, + { url = "https://files.pythonhosted.org/packages/38/78/74ea9eb547d13c34e984e07ec8a473eb55b19c1451fe7fc8077c6a4b0548/cryptography-44.0.1-cp37-abi3-win32.whl", hash = "sha256:24979e9f2040c953a94bf3c6782e67795a4c260734e5264dceea65c8f4bae64a", size = 2771882, upload-time = "2025-02-11T15:50:01.478Z" }, + { url = "https://files.pythonhosted.org/packages/cf/6c/3907271ee485679e15c9f5e93eac6aa318f859b0aed8d369afd636fafa87/cryptography-44.0.1-cp37-abi3-win_amd64.whl", hash = "sha256:fd0ee90072861e276b0ff08bd627abec29e32a53b2be44e41dbcdf87cbee2b00", size = 3206989, upload-time = "2025-02-11T15:50:03.312Z" }, + { url = "https://files.pythonhosted.org/packages/9f/f1/676e69c56a9be9fd1bffa9bc3492366901f6e1f8f4079428b05f1414e65c/cryptography-44.0.1-cp39-abi3-macosx_10_9_universal2.whl", hash = "sha256:a2d8a7045e1ab9b9f803f0d9531ead85f90c5f2859e653b61497228b18452008", size = 6643714, upload-time = "2025-02-11T15:50:05.555Z" }, + { url = "https://files.pythonhosted.org/packages/ba/9f/1775600eb69e72d8f9931a104120f2667107a0ee478f6ad4fe4001559345/cryptography-44.0.1-cp39-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b8272f257cf1cbd3f2e120f14c68bff2b6bdfcc157fafdee84a1b795efd72862", size = 3943269, upload-time = "2025-02-11T15:50:08.54Z" }, + { url = "https://files.pythonhosted.org/packages/25/ba/e00d5ad6b58183829615be7f11f55a7b6baa5a06910faabdc9961527ba44/cryptography-44.0.1-cp39-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:1e8d181e90a777b63f3f0caa836844a1182f1f265687fac2115fcf245f5fbec3", size = 4166461, upload-time = "2025-02-11T15:50:11.419Z" }, + { url = "https://files.pythonhosted.org/packages/b3/45/690a02c748d719a95ab08b6e4decb9d81e0ec1bac510358f61624c86e8a3/cryptography-44.0.1-cp39-abi3-manylinux_2_28_aarch64.whl", hash = "sha256:436df4f203482f41aad60ed1813811ac4ab102765ecae7a2bbb1dbb66dcff5a7", size = 3950314, upload-time = "2025-02-11T15:50:14.181Z" }, + { url = "https://files.pythonhosted.org/packages/e6/50/bf8d090911347f9b75adc20f6f6569ed6ca9b9bff552e6e390f53c2a1233/cryptography-44.0.1-cp39-abi3-manylinux_2_28_armv7l.manylinux_2_31_armv7l.whl", hash = "sha256:4f422e8c6a28cf8b7f883eb790695d6d45b0c385a2583073f3cec434cc705e1a", size = 3686675, upload-time = "2025-02-11T15:50:16.3Z" }, + { url = "https://files.pythonhosted.org/packages/e1/e7/cfb18011821cc5f9b21efb3f94f3241e3a658d267a3bf3a0f45543858ed8/cryptography-44.0.1-cp39-abi3-manylinux_2_28_x86_64.whl", hash = "sha256:72198e2b5925155497a5a3e8c216c7fb3e64c16ccee11f0e7da272fa93b35c4c", size = 4190429, upload-time = "2025-02-11T15:50:19.302Z" }, + { url = "https://files.pythonhosted.org/packages/07/ef/77c74d94a8bfc1a8a47b3cafe54af3db537f081742ee7a8a9bd982b62774/cryptography-44.0.1-cp39-abi3-manylinux_2_34_aarch64.whl", hash = "sha256:2a46a89ad3e6176223b632056f321bc7de36b9f9b93b2cc1cccf935a3849dc62", size = 3950039, upload-time = "2025-02-11T15:50:22.257Z" }, + { url = "https://files.pythonhosted.org/packages/6d/b9/8be0ff57c4592382b77406269b1e15650c9f1a167f9e34941b8515b97159/cryptography-44.0.1-cp39-abi3-manylinux_2_34_x86_64.whl", hash = "sha256:53f23339864b617a3dfc2b0ac8d5c432625c80014c25caac9082314e9de56f41", size = 4189713, upload-time = "2025-02-11T15:50:24.261Z" }, + { url = "https://files.pythonhosted.org/packages/78/e1/4b6ac5f4100545513b0847a4d276fe3c7ce0eacfa73e3b5ebd31776816ee/cryptography-44.0.1-cp39-abi3-musllinux_1_2_aarch64.whl", hash = "sha256:888fcc3fce0c888785a4876ca55f9f43787f4c5c1cc1e2e0da71ad481ff82c5b", size = 4071193, upload-time = "2025-02-11T15:50:26.18Z" }, + { url = "https://files.pythonhosted.org/packages/3d/cb/afff48ceaed15531eab70445abe500f07f8f96af2bb35d98af6bfa89ebd4/cryptography-44.0.1-cp39-abi3-musllinux_1_2_x86_64.whl", hash = "sha256:00918d859aa4e57db8299607086f793fa7813ae2ff5a4637e318a25ef82730f7", size = 4289566, upload-time = "2025-02-11T15:50:28.221Z" }, + { url = "https://files.pythonhosted.org/packages/30/6f/4eca9e2e0f13ae459acd1ca7d9f0257ab86e68f44304847610afcb813dc9/cryptography-44.0.1-cp39-abi3-win32.whl", hash = "sha256:9b336599e2cb77b1008cb2ac264b290803ec5e8e89d618a5e978ff5eb6f715d9", size = 2772371, upload-time = "2025-02-11T15:50:29.997Z" }, + { url = "https://files.pythonhosted.org/packages/d2/05/5533d30f53f10239616a357f080892026db2d550a40c393d0a8a7af834a9/cryptography-44.0.1-cp39-abi3-win_amd64.whl", hash = "sha256:e403f7f766ded778ecdb790da786b418a9f2394f36e8cc8b796cc056ab05f44f", size = 3207303, upload-time = "2025-02-11T15:50:32.258Z" }, ] [[package]] -name = "platformdirs" -version = "4.3.7" +name = "cycler" +version = "0.12.1" source = { registry = "https://pypi.org/simple" } -sdist = { url = "https://files.pythonhosted.org/packages/b6/2d/7d512a3913d60623e7eb945c6d1b4f0bddf1d0b7ada5225274c87e5b53d1/platformdirs-4.3.7.tar.gz", hash = "sha256:eb437d586b6a0986388f0d6f74aa0cde27b48d0e3d66843640bfb6bdcdb6e351", size = 21291 } +sdist = { url = "https://files.pythonhosted.org/packages/a9/95/a3dbbb5028f35eafb79008e7522a75244477d2838f38cbb722248dabc2a8/cycler-0.12.1.tar.gz", hash = "sha256:88bb128f02ba341da8ef447245a9e138fae777f6a23943da4540077d3601eb1c", size = 7615, upload-time = "2023-10-07T05:32:18.335Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/6d/45/59578566b3275b8fd9157885918fcd0c4d74162928a5310926887b856a51/platformdirs-4.3.7-py3-none-any.whl", hash = "sha256:a03875334331946f13c549dbd8f4bac7a13a50a895a0eb1e8c6a8ace80d40a94", size = 18499 }, + { url = "https://files.pythonhosted.org/packages/e7/05/c19819d5e3d95294a6f5947fb9b9629efb316b96de511b418c53d245aae6/cycler-0.12.1-py3-none-any.whl", hash = "sha256:85cef7cff222d8644161529808465972e51340599459b8ac3ccbac5a854e0d30", size = 8321, upload-time = "2023-10-07T05:32:16.783Z" }, ] [[package]] -name = "pluggy" -version = "1.5.0" +name = "datasets" +version = "3.4.1" source = { registry = "https://pypi.org/simple" } -sdist = { url = "https://files.pythonhosted.org/packages/96/2d/02d4312c973c6050a18b314a5ad0b3210edb65a906f868e31c111dede4a6/pluggy-1.5.0.tar.gz", hash = "sha256:2cffa88e94fdc978c4c574f15f9e59b7f4201d439195c3715ca9e2486f1d0cf1", size = 67955 } +dependencies = [ + { name = "aiohttp", marker = "sys_platform == 'linux'" }, + { name = "dill", marker = "sys_platform == 'linux'" }, + { name = "filelock", marker = "sys_platform == 'linux'" }, + { name = "fsspec", extra = ["http"], marker = "(sys_platform == 'linux' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (sys_platform == 'linux' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-trustyai')" }, + { name = "huggingface-hub", marker = "sys_platform == 'linux'" }, + { name = "multiprocess", marker = "sys_platform == 'linux'" }, + { name = "numpy", version = "1.24.4", source = { registry = "https://pypi.org/simple" }, marker = "sys_platform == 'linux'" }, + { name = "packaging", marker = "sys_platform == 'linux'" }, + { name = "pandas", version = "1.5.3", source = { registry = "https://pypi.org/simple" }, marker = "sys_platform == 'linux'" }, + { name = "pyarrow", marker = "sys_platform == 'linux'" }, + { name = "pyyaml", marker = "sys_platform == 'linux'" }, + { name = "requests", marker = "sys_platform == 'linux'" }, + { name = "tqdm", marker = "sys_platform == 'linux'" }, + { name = "xxhash", marker = "sys_platform == 'linux'" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/99/4b/40cda74a4e0e58450b0c85a737e134ab5df65e6f5c33c5e175db5d6a5227/datasets-3.4.1.tar.gz", hash = "sha256:e23968da79bc014ef9f7540eeb7771c6180eae82c86ebcfcc10535a03caf08b5", size = 566559, upload-time = "2025-03-17T15:59:05.778Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/88/5f/e351af9a41f866ac3f1fac4ca0613908d9a41741cfcf2228f4ad853b697d/pluggy-1.5.0-py3-none-any.whl", hash = "sha256:44e1ad92c8ca002de6377e165f3e0f1be63266ab4d554740532335b9d75ea669", size = 20556 }, + { url = "https://files.pythonhosted.org/packages/16/44/5de560a2625d31801895fb2663693df210c6465960d61a99192caa9afd63/datasets-3.4.1-py3-none-any.whl", hash = "sha256:b91cf257bd64132fa9d953dd4768ab6d63205597301f132a74271cfcce8b5dd3", size = 487392, upload-time = "2025-03-17T15:59:04.053Z" }, ] [[package]] -name = "podman" -version = "5.4.0.1" +name = "debugpy" +version = "1.8.14" source = { registry = "https://pypi.org/simple" } -dependencies = [ - { name = "requests", marker = "sys_platform == 'darwin' or sys_platform == 'linux'" }, - { name = "urllib3", marker = "sys_platform == 'darwin' or sys_platform == 'linux'" }, +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/67/e8/57fe0c86915671fd6a3d2d8746e40485fd55e8d9e682388fbb3a3d42b86f/debugpy-1.8.14-cp311-cp311-macosx_14_0_universal2.whl", hash = "sha256:1b2ac8c13b2645e0b1eaf30e816404990fbdb168e193322be8f545e8c01644a9", size = 2175064, upload-time = "2025-04-10T19:46:19.486Z" }, + { url = "https://files.pythonhosted.org/packages/3b/97/2b2fd1b1c9569c6764ccdb650a6f752e4ac31be465049563c9eb127a8487/debugpy-1.8.14-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:cf431c343a99384ac7eab2f763980724834f933a271e90496944195318c619e2", size = 3132359, upload-time = "2025-04-10T19:46:21.192Z" }, + { url = "https://files.pythonhosted.org/packages/c0/ee/b825c87ed06256ee2a7ed8bab8fb3bb5851293bf9465409fdffc6261c426/debugpy-1.8.14-cp311-cp311-win32.whl", hash = "sha256:c99295c76161ad8d507b413cd33422d7c542889fbb73035889420ac1fad354f2", size = 5133269, upload-time = "2025-04-10T19:46:23.047Z" }, + { url = "https://files.pythonhosted.org/packages/d5/a6/6c70cd15afa43d37839d60f324213843174c1d1e6bb616bd89f7c1341bac/debugpy-1.8.14-cp311-cp311-win_amd64.whl", hash = "sha256:7816acea4a46d7e4e50ad8d09d963a680ecc814ae31cdef3622eb05ccacf7b01", size = 5158156, upload-time = "2025-04-10T19:46:24.521Z" }, + { url = "https://files.pythonhosted.org/packages/d9/2a/ac2df0eda4898f29c46eb6713a5148e6f8b2b389c8ec9e425a4a1d67bf07/debugpy-1.8.14-cp312-cp312-macosx_14_0_universal2.whl", hash = "sha256:8899c17920d089cfa23e6005ad9f22582fd86f144b23acb9feeda59e84405b84", size = 2501268, upload-time = "2025-04-10T19:46:26.044Z" }, + { url = "https://files.pythonhosted.org/packages/10/53/0a0cb5d79dd9f7039169f8bf94a144ad3efa52cc519940b3b7dde23bcb89/debugpy-1.8.14-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f6bb5c0dcf80ad5dbc7b7d6eac484e2af34bdacdf81df09b6a3e62792b722826", size = 4221077, upload-time = "2025-04-10T19:46:27.464Z" }, + { url = "https://files.pythonhosted.org/packages/f8/d5/84e01821f362327bf4828728aa31e907a2eca7c78cd7c6ec062780d249f8/debugpy-1.8.14-cp312-cp312-win32.whl", hash = "sha256:281d44d248a0e1791ad0eafdbbd2912ff0de9eec48022a5bfbc332957487ed3f", size = 5255127, upload-time = "2025-04-10T19:46:29.467Z" }, + { url = "https://files.pythonhosted.org/packages/33/16/1ed929d812c758295cac7f9cf3dab5c73439c83d9091f2d91871e648093e/debugpy-1.8.14-cp312-cp312-win_amd64.whl", hash = "sha256:5aa56ef8538893e4502a7d79047fe39b1dae08d9ae257074c6464a7b290b806f", size = 5297249, upload-time = "2025-04-10T19:46:31.538Z" }, + { url = "https://files.pythonhosted.org/packages/97/1a/481f33c37ee3ac8040d3d51fc4c4e4e7e61cb08b8bc8971d6032acc2279f/debugpy-1.8.14-py2.py3-none-any.whl", hash = "sha256:5cd9a579d553b6cb9759a7908a41988ee6280b961f24f63336835d9418216a20", size = 5256230, upload-time = "2025-04-10T19:46:54.077Z" }, +] + +[[package]] +name = "decorator" +version = "5.2.1" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/43/fa/6d96a0978d19e17b68d634497769987b16c8f4cd0a7a05048bec693caa6b/decorator-5.2.1.tar.gz", hash = "sha256:65f266143752f734b0a7cc83c46f4618af75b8c5911b00ccb61d0ac9b6da0360", size = 56711, upload-time = "2025-02-24T04:41:34.073Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/4e/8c/f3147f5c4b73e7550fe5f9352eaa956ae838d5c51eb58e7a25b9f3e2643b/decorator-5.2.1-py3-none-any.whl", hash = "sha256:d316bb415a2d9e2d2b3abcc4084c6502fc09240e292cd76a76afc106a1c8e04a", size = 9190, upload-time = "2025-02-24T04:41:32.565Z" }, ] -sdist = { url = "https://files.pythonhosted.org/packages/fa/5c/ff701e438360a526a728eae3c18ee439c0875e4b937947f1cd04497ae17e/podman-5.4.0.1.tar.gz", hash = "sha256:ee537aaa44ba530fad7cd939d886a7632f9f7018064e7831e8cb614c54cb1789", size = 68926 } + +[[package]] +name = "defusedxml" +version = "0.7.1" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/0f/d5/c66da9b79e5bdb124974bfe172b4daf3c984ebd9c2a06e2b8a4dc7331c72/defusedxml-0.7.1.tar.gz", hash = "sha256:1bb3032db185915b62d7c6209c5a8792be6a32ab2fedacc84e01b52c51aa3e69", size = 75520, upload-time = "2021-03-08T10:59:26.269Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/8e/38/6d4416f3ec8dc18149847bbb31cc54af20de063844029b00fb0c0d4c533c/podman-5.4.0.1-py3-none-any.whl", hash = "sha256:abd32e49a66bf18a680d9a0ac3989a3f4a3cc7293bc2a5060653276d8ee712f4", size = 84516 }, + { url = "https://files.pythonhosted.org/packages/07/6c/aa3f2f849e01cb6a001cd8554a88d4c77c5c1a31c95bdf1cf9301e6d9ef4/defusedxml-0.7.1-py2.py3-none-any.whl", hash = "sha256:a352e7e428770286cc899e2542b6cdaedb2b4953ff269a210103ec58f6198a61", size = 25604, upload-time = "2021-03-08T10:59:24.45Z" }, ] [[package]] -name = "pre-commit" -version = "4.2.0" +name = "deprecated" +version = "1.2.18" source = { registry = "https://pypi.org/simple" } dependencies = [ - { name = "cfgv", marker = "sys_platform == 'darwin' or sys_platform == 'linux'" }, - { name = "identify", marker = "sys_platform == 'darwin' or sys_platform == 'linux'" }, - { name = "nodeenv", marker = "sys_platform == 'darwin' or sys_platform == 'linux'" }, - { name = "pyyaml", marker = "sys_platform == 'darwin' or sys_platform == 'linux'" }, - { name = "virtualenv", marker = "sys_platform == 'darwin' or sys_platform == 'linux'" }, + { name = "wrapt", version = "1.14.1", source = { registry = "https://pypi.org/simple" }, marker = "(sys_platform == 'linux' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (sys_platform == 'linux' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai')" }, + { name = "wrapt", version = "1.17.2", source = { registry = "https://pypi.org/simple" }, marker = "(sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base') or (sys_platform == 'linux' and extra == 'group-9-notebooks-jupyter-datascience-image') or (sys_platform == 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (sys_platform == 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (sys_platform == 'linux' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (sys_platform == 'linux' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (sys_platform == 'linux' and extra == 'group-9-notebooks-pytorchcuda') or (sys_platform == 'linux' and extra == 'group-9-notebooks-pytorchrocm') or (sys_platform == 'linux' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-trustyai') or (sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-tensorflowrocm') or (sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-tensorflowrocm') or (sys_platform == 'linux' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-tensorflowrocm') or (sys_platform == 'linux' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-trustyai')" }, ] -sdist = { url = "https://files.pythonhosted.org/packages/08/39/679ca9b26c7bb2999ff122d50faa301e49af82ca9c066ec061cfbc0c6784/pre_commit-4.2.0.tar.gz", hash = "sha256:601283b9757afd87d40c4c4a9b2b5de9637a8ea02eaff7adc2d0fb4e04841146", size = 193424 } +sdist = { url = "https://files.pythonhosted.org/packages/98/97/06afe62762c9a8a86af0cfb7bfdab22a43ad17138b07af5b1a58442690a2/deprecated-1.2.18.tar.gz", hash = "sha256:422b6f6d859da6f2ef57857761bfb392480502a64c3028ca9bbe86085d72115d", size = 2928744, upload-time = "2025-01-27T10:46:25.7Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/88/74/a88bf1b1efeae488a0c0b7bdf71429c313722d1fc0f377537fbe554e6180/pre_commit-4.2.0-py2.py3-none-any.whl", hash = "sha256:a009ca7205f1eb497d10b845e52c838a98b6cdd2102a6c8e4540e94ee75c58bd", size = 220707 }, + { url = "https://files.pythonhosted.org/packages/6e/c6/ac0b6c1e2d138f1002bcf799d330bd6d85084fece321e662a14223794041/Deprecated-1.2.18-py2.py3-none-any.whl", hash = "sha256:bd5011788200372a32418f888e326a09ff80d0214bd961147cfed01b5c018eec", size = 9998, upload-time = "2025-01-27T10:46:09.186Z" }, ] [[package]] -name = "prompt-toolkit" -version = "3.0.50" +name = "deprecation" +version = "2.1.0" source = { registry = "https://pypi.org/simple" } dependencies = [ - { name = "wcwidth", marker = "sys_platform == 'darwin' or sys_platform == 'linux'" }, + { name = "packaging", marker = "sys_platform == 'linux'" }, ] -sdist = { url = "https://files.pythonhosted.org/packages/a1/e1/bd15cb8ffdcfeeb2bdc215de3c3cffca11408d829e4b8416dcfe71ba8854/prompt_toolkit-3.0.50.tar.gz", hash = "sha256:544748f3860a2623ca5cd6d2795e7a14f3d0e1c3c9728359013f79877fc89bab", size = 429087 } +sdist = { url = "https://files.pythonhosted.org/packages/5a/d3/8ae2869247df154b64c1884d7346d412fed0c49df84db635aab2d1c40e62/deprecation-2.1.0.tar.gz", hash = "sha256:72b3bde64e5d778694b0cf68178aed03d15e15477116add3fb773e581f9518ff", size = 173788, upload-time = "2020-04-20T14:23:38.738Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/e4/ea/d836f008d33151c7a1f62caf3d8dd782e4d15f6a43897f64480c2b8de2ad/prompt_toolkit-3.0.50-py3-none-any.whl", hash = "sha256:9b6427eb19e479d98acff65196a307c555eb567989e6d88ebbb1b509d9779198", size = 387816 }, + { url = "https://files.pythonhosted.org/packages/02/c3/253a89ee03fc9b9682f1541728eb66db7db22148cd94f89ab22528cd1e1b/deprecation-2.1.0-py2.py3-none-any.whl", hash = "sha256:a10811591210e1fb0e768a8c25517cabeabcba6f0bf96564f8ff45189f90b14a", size = 11178, upload-time = "2020-04-20T14:23:36.581Z" }, ] [[package]] -name = "ptyprocess" -version = "0.7.0" +name = "dill" +version = "0.3.8" source = { registry = "https://pypi.org/simple" } -sdist = { url = "https://files.pythonhosted.org/packages/20/e5/16ff212c1e452235a90aeb09066144d0c5a6a8c0834397e03f5224495c4e/ptyprocess-0.7.0.tar.gz", hash = "sha256:5c5d0a3b48ceee0b48485e0c26037c0acd7d29765ca3fbb5cb3831d347423220", size = 70762 } +sdist = { url = "https://files.pythonhosted.org/packages/17/4d/ac7ffa80c69ea1df30a8aa11b3578692a5118e7cd1aa157e3ef73b092d15/dill-0.3.8.tar.gz", hash = "sha256:3ebe3c479ad625c4553aca177444d89b486b1d84982eeacded644afc0cf797ca", size = 184847, upload-time = "2024-01-27T23:42:16.145Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/22/a6/858897256d0deac81a172289110f31629fc4cee19b6f01283303e18c8db3/ptyprocess-0.7.0-py2.py3-none-any.whl", hash = "sha256:4b41f3967fce3af57cc7e94b888626c18bf37a083e3651ca8feeb66d492fef35", size = 13993 }, + { url = "https://files.pythonhosted.org/packages/c9/7a/cef76fd8438a42f96db64ddaa85280485a9c395e7df3db8158cfec1eee34/dill-0.3.8-py3-none-any.whl", hash = "sha256:c36ca9ffb54365bdd2f8eb3eff7d2a21237f8452b57ace88b1ac615b7e815bd7", size = 116252, upload-time = "2024-01-27T23:42:14.239Z" }, ] [[package]] -name = "pure-eval" -version = "0.2.3" +name = "distlib" +version = "0.3.9" source = { registry = "https://pypi.org/simple" } -sdist = { url = "https://files.pythonhosted.org/packages/cd/05/0a34433a064256a578f1783a10da6df098ceaa4a57bbeaa96a6c0352786b/pure_eval-0.2.3.tar.gz", hash = "sha256:5f4e983f40564c576c7c8635ae88db5956bb2229d7e9237d03b3c0b0190eaf42", size = 19752 } +sdist = { url = "https://files.pythonhosted.org/packages/0d/dd/1bec4c5ddb504ca60fc29472f3d27e8d4da1257a854e1d96742f15c1d02d/distlib-0.3.9.tar.gz", hash = "sha256:a60f20dea646b8a33f3e7772f74dc0b2d0772d2837ee1342a00645c81edf9403", size = 613923, upload-time = "2024-10-09T18:35:47.551Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/8e/37/efad0257dc6e593a18957422533ff0f87ede7c9c6ea010a2177d738fb82f/pure_eval-0.2.3-py3-none-any.whl", hash = "sha256:1db8e35b67b3d218d818ae653e27f06c3aa420901fa7b081ca98cbedc874e0d0", size = 11842 }, + { url = "https://files.pythonhosted.org/packages/91/a1/cf2472db20f7ce4a6be1253a81cfdf85ad9c7885ffbed7047fb72c24cf87/distlib-0.3.9-py2.py3-none-any.whl", hash = "sha256:47f8c22fd27c27e25a65601af709b38e4f0a45ea4fc2e710f65755fa8caaaf87", size = 468973, upload-time = "2024-10-09T18:35:44.272Z" }, ] [[package]] -name = "pyasn1" -version = "0.6.1" +name = "dnspython" +version = "2.7.0" source = { registry = "https://pypi.org/simple" } -sdist = { url = "https://files.pythonhosted.org/packages/ba/e9/01f1a64245b89f039897cb0130016d79f77d52669aae6ee7b159a6c4c018/pyasn1-0.6.1.tar.gz", hash = "sha256:6f580d2bdd84365380830acf45550f2511469f673cb4a5ae3857a3170128b034", size = 145322 } +sdist = { url = "https://files.pythonhosted.org/packages/b5/4a/263763cb2ba3816dd94b08ad3a33d5fdae34ecb856678773cc40a3605829/dnspython-2.7.0.tar.gz", hash = "sha256:ce9c432eda0dc91cf618a5cedf1a4e142651196bbcd2c80e89ed5a907e5cfaf1", size = 345197, upload-time = "2024-10-05T20:14:59.362Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/c8/f1/d6a797abb14f6283c0ddff96bbdd46937f64122b8c925cab503dd37f8214/pyasn1-0.6.1-py3-none-any.whl", hash = "sha256:0d632f46f2ba09143da3a8afe9e33fb6f92fa2320ab7e886e2d0f7672af84629", size = 83135 }, + { url = "https://files.pythonhosted.org/packages/68/1b/e0a87d256e40e8c888847551b20a017a6b98139178505dc7ffb96f04e954/dnspython-2.7.0-py3-none-any.whl", hash = "sha256:b4c34b7d10b51bcc3a5071e7b8dee77939f1e878477eeecc965e9835f63c6c86", size = 313632, upload-time = "2024-10-05T20:14:57.687Z" }, ] [[package]] -name = "pyasn1-modules" -version = "0.4.1" +name = "docker" +version = "7.1.0" source = { registry = "https://pypi.org/simple" } dependencies = [ - { name = "pyasn1", marker = "sys_platform == 'darwin' or sys_platform == 'linux'" }, + { name = "requests", marker = "sys_platform == 'linux' or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai')" }, + { name = "urllib3", marker = "sys_platform == 'linux' or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai')" }, ] -sdist = { url = "https://files.pythonhosted.org/packages/1d/67/6afbf0d507f73c32d21084a79946bfcfca5fbc62a72057e9c23797a737c9/pyasn1_modules-0.4.1.tar.gz", hash = "sha256:c28e2dbf9c06ad61c71a075c7e0f9fd0f1b0bb2d2ad4377f240d33ac2ab60a7c", size = 310028 } +sdist = { url = "https://files.pythonhosted.org/packages/91/9b/4a2ea29aeba62471211598dac5d96825bb49348fa07e906ea930394a83ce/docker-7.1.0.tar.gz", hash = "sha256:ad8c70e6e3f8926cb8a92619b832b4ea5299e2831c14284663184e200546fa6c", size = 117834, upload-time = "2024-05-23T11:13:57.216Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/77/89/bc88a6711935ba795a679ea6ebee07e128050d6382eaa35a0a47c8032bdc/pyasn1_modules-0.4.1-py3-none-any.whl", hash = "sha256:49bfa96b45a292b711e986f222502c1c9a5e1f4e568fc30e2574a6c7d07838fd", size = 181537 }, + { url = "https://files.pythonhosted.org/packages/e3/26/57c6fb270950d476074c087527a558ccb6f4436657314bfb6cdf484114c4/docker-7.1.0-py3-none-any.whl", hash = "sha256:c96b93b7f0a746f9e77d325bcfb87422a3d8bd4f03136ae8a85b37f1898d5fc0", size = 147774, upload-time = "2024-05-23T11:13:55.01Z" }, ] [[package]] -name = "pycparser" -version = "2.22" +name = "docstring-parser" +version = "0.16" source = { registry = "https://pypi.org/simple" } -sdist = { url = "https://files.pythonhosted.org/packages/1d/b2/31537cf4b1ca988837256c910a668b553fceb8f069bedc4b1c826024b52c/pycparser-2.22.tar.gz", hash = "sha256:491c8be9c040f5390f5bf44a5b07752bd07f56edf992381b05c701439eec10f6", size = 172736 } +sdist = { url = "https://files.pythonhosted.org/packages/08/12/9c22a58c0b1e29271051222d8906257616da84135af9ed167c9e28f85cb3/docstring_parser-0.16.tar.gz", hash = "sha256:538beabd0af1e2db0146b6bd3caa526c35a34d61af9fd2887f3a8a27a739aa6e", size = 26565, upload-time = "2024-03-15T10:39:44.419Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/13/a3/a812df4e2dd5696d1f351d58b8fe16a405b234ad2886a0dab9183fb78109/pycparser-2.22-py3-none-any.whl", hash = "sha256:c3702b6d3dd8c7abc1afa565d7e63d53a1d0bd86cdc24edd75470f4de499cfcc", size = 117552 }, + { url = "https://files.pythonhosted.org/packages/d5/7c/e9fcff7623954d86bdc17782036cbf715ecab1bec4847c008557affe1ca8/docstring_parser-0.16-py3-none-any.whl", hash = "sha256:bf0a1387354d3691d102edef7ec124f219ef639982d096e26e3b60aeffa90637", size = 36533, upload-time = "2024-03-15T10:39:41.527Z" }, ] [[package]] -name = "pydantic" -version = "2.10.6" +name = "docstring-to-markdown" +version = "0.17" source = { registry = "https://pypi.org/simple" } dependencies = [ - { name = "annotated-types", marker = "sys_platform == 'darwin' or sys_platform == 'linux'" }, - { name = "pydantic-core", marker = "sys_platform == 'darwin' or sys_platform == 'linux'" }, - { name = "typing-extensions", marker = "sys_platform == 'darwin' or sys_platform == 'linux'" }, + { name = "importlib-metadata", marker = "sys_platform == 'linux'" }, + { name = "typing-extensions", marker = "sys_platform == 'linux'" }, ] -sdist = { url = "https://files.pythonhosted.org/packages/b7/ae/d5220c5c52b158b1de7ca89fc5edb72f304a70a4c540c84c8844bf4008de/pydantic-2.10.6.tar.gz", hash = "sha256:ca5daa827cce33de7a42be142548b0096bf05a7e7b365aebfa5f8eeec7128236", size = 761681 } +sdist = { url = "https://files.pythonhosted.org/packages/52/d8/8abe80d62c5dce1075578031bcfde07e735bcf0afe2886dd48b470162ab4/docstring_to_markdown-0.17.tar.gz", hash = "sha256:df72a112294c7492487c9da2451cae0faeee06e86008245c188c5761c9590ca3", size = 32260, upload-time = "2025-05-02T15:09:07.932Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/f4/3c/8cc1cc84deffa6e25d2d0c688ebb80635dfdbf1dbea3e30c541c8cf4d860/pydantic-2.10.6-py3-none-any.whl", hash = "sha256:427d664bf0b8a2b34ff5dd0f5a18df00591adcee7198fbd71981054cef37b584", size = 431696 }, + { url = "https://files.pythonhosted.org/packages/56/7b/af3d0da15bed3a8665419bb3a630585756920f4ad67abfdfef26240ebcc0/docstring_to_markdown-0.17-py3-none-any.whl", hash = "sha256:fd7d5094aa83943bf5f9e1a13701866b7c452eac19765380dead666e36d3711c", size = 23479, upload-time = "2025-05-02T15:09:06.676Z" }, ] [[package]] -name = "pydantic-core" -version = "2.27.2" +name = "entrypoints" +version = "0.4" source = { registry = "https://pypi.org/simple" } -dependencies = [ - { name = "typing-extensions", marker = "sys_platform == 'darwin' or sys_platform == 'linux'" }, -] -sdist = { url = "https://files.pythonhosted.org/packages/fc/01/f3e5ac5e7c25833db5eb555f7b7ab24cd6f8c322d3a3ad2d67a952dc0abc/pydantic_core-2.27.2.tar.gz", hash = "sha256:eb026e5a4c1fee05726072337ff51d1efb6f59090b7da90d30ea58625b1ffb39", size = 413443 } +sdist = { url = "https://files.pythonhosted.org/packages/ea/8d/a7121ffe5f402dc015277d2d31eb82d2187334503a011c18f2e78ecbb9b2/entrypoints-0.4.tar.gz", hash = "sha256:b706eddaa9218a19ebcd67b56818f05bb27589b1ca9e8d797b74affad4ccacd4", size = 13974, upload-time = "2022-02-02T21:30:28.172Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/d6/74/51c8a5482ca447871c93e142d9d4a92ead74de6c8dc5e66733e22c9bba89/pydantic_core-2.27.2-cp312-cp312-macosx_10_12_x86_64.whl", hash = "sha256:9e0c8cfefa0ef83b4da9588448b6d8d2a2bf1a53c3f1ae5fca39eb3061e2f0b0", size = 1893127 }, - { url = "https://files.pythonhosted.org/packages/d3/f3/c97e80721735868313c58b89d2de85fa80fe8dfeeed84dc51598b92a135e/pydantic_core-2.27.2-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:83097677b8e3bd7eaa6775720ec8e0405f1575015a463285a92bfdfe254529ef", size = 1811340 }, - { url = "https://files.pythonhosted.org/packages/9e/91/840ec1375e686dbae1bd80a9e46c26a1e0083e1186abc610efa3d9a36180/pydantic_core-2.27.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:172fce187655fece0c90d90a678424b013f8fbb0ca8b036ac266749c09438cb7", size = 1822900 }, - { url = "https://files.pythonhosted.org/packages/f6/31/4240bc96025035500c18adc149aa6ffdf1a0062a4b525c932065ceb4d868/pydantic_core-2.27.2-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:519f29f5213271eeeeb3093f662ba2fd512b91c5f188f3bb7b27bc5973816934", size = 1869177 }, - { url = "https://files.pythonhosted.org/packages/fa/20/02fbaadb7808be578317015c462655c317a77a7c8f0ef274bc016a784c54/pydantic_core-2.27.2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:05e3a55d124407fffba0dd6b0c0cd056d10e983ceb4e5dbd10dda135c31071d6", size = 2038046 }, - { url = "https://files.pythonhosted.org/packages/06/86/7f306b904e6c9eccf0668248b3f272090e49c275bc488a7b88b0823444a4/pydantic_core-2.27.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:9c3ed807c7b91de05e63930188f19e921d1fe90de6b4f5cd43ee7fcc3525cb8c", size = 2685386 }, - { url = "https://files.pythonhosted.org/packages/8d/f0/49129b27c43396581a635d8710dae54a791b17dfc50c70164866bbf865e3/pydantic_core-2.27.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6fb4aadc0b9a0c063206846d603b92030eb6f03069151a625667f982887153e2", size = 1997060 }, - { url = "https://files.pythonhosted.org/packages/0d/0f/943b4af7cd416c477fd40b187036c4f89b416a33d3cc0ab7b82708a667aa/pydantic_core-2.27.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:28ccb213807e037460326424ceb8b5245acb88f32f3d2777427476e1b32c48c4", size = 2004870 }, - { url = "https://files.pythonhosted.org/packages/35/40/aea70b5b1a63911c53a4c8117c0a828d6790483f858041f47bab0b779f44/pydantic_core-2.27.2-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:de3cd1899e2c279b140adde9357c4495ed9d47131b4a4eaff9052f23398076b3", size = 1999822 }, - { url = "https://files.pythonhosted.org/packages/f2/b3/807b94fd337d58effc5498fd1a7a4d9d59af4133e83e32ae39a96fddec9d/pydantic_core-2.27.2-cp312-cp312-musllinux_1_1_armv7l.whl", hash = "sha256:220f892729375e2d736b97d0e51466252ad84c51857d4d15f5e9692f9ef12be4", size = 2130364 }, - { url = "https://files.pythonhosted.org/packages/fc/df/791c827cd4ee6efd59248dca9369fb35e80a9484462c33c6649a8d02b565/pydantic_core-2.27.2-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:a0fcd29cd6b4e74fe8ddd2c90330fd8edf2e30cb52acda47f06dd615ae72da57", size = 2158303 }, + { url = "https://files.pythonhosted.org/packages/35/a8/365059bbcd4572cbc41de17fd5b682be5868b218c3c5479071865cab9078/entrypoints-0.4-py3-none-any.whl", hash = "sha256:f174b5ff827504fd3cd97cc3f8649f3693f51538c7e4bdf3ef002c8429d42f9f", size = 5294, upload-time = "2022-02-02T21:30:26.024Z" }, ] [[package]] -name = "pyfakefs" -version = "5.7.4" +name = "executing" +version = "1.2.0" source = { registry = "https://pypi.org/simple" } -sdist = { url = "https://files.pythonhosted.org/packages/8e/f9/3a2f10b1b3e251cec47ab7581d15bc39553cd5a23893cbe0efe633856c4e/pyfakefs-5.7.4.tar.gz", hash = "sha256:4971e65cc80a93a1e6f1e3a4654909c0c493186539084dc9301da3d68c8878fe", size = 213382 } +resolution-markers = [ + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", +] +sdist = { url = "https://files.pythonhosted.org/packages/8f/ac/89ff37d8594b0eef176b7cec742ac868fef853b8e18df0309e3def9f480b/executing-1.2.0.tar.gz", hash = "sha256:19da64c18d2d851112f09c287f8d3dbbdf725ab0e569077efb6cdcbd3497c107", size = 654544, upload-time = "2022-10-29T13:51:11.102Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/b9/52/eb08c795d9159da167334a7fa8a23bd04112b4c8b63030a2600711a94143/pyfakefs-5.7.4-py3-none-any.whl", hash = "sha256:3e763d700b91c54ade6388be2cfa4e521abc00e34f7defb84ee511c73031f45f", size = 228706 }, + { url = "https://files.pythonhosted.org/packages/28/3c/bc3819dd8b1a1588c9215a87271b6178cc5498acaa83885211f5d4d9e693/executing-1.2.0-py2.py3-none-any.whl", hash = "sha256:0314a69e37426e3608aada02473b4161d4caf5a4b244d1d0c48072b8fee7bacc", size = 24360, upload-time = "2022-10-29T13:51:08.47Z" }, ] [[package]] -name = "pygments" -version = "2.19.1" +name = "executing" +version = "2.2.0" source = { registry = "https://pypi.org/simple" } -sdist = { url = "https://files.pythonhosted.org/packages/7c/2d/c3338d48ea6cc0feb8446d8e6937e1408088a72a39937982cc6111d17f84/pygments-2.19.1.tar.gz", hash = "sha256:61c16d2a8576dc0649d9f39e089b5f02bcd27fba10d8fb4dcc28173f7a45151f", size = 4968581 } +resolution-markers = [ + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", +] +sdist = { url = "https://files.pythonhosted.org/packages/91/50/a9d80c47ff289c611ff12e63f7c5d13942c65d68125160cefd768c73e6e4/executing-2.2.0.tar.gz", hash = "sha256:5d108c028108fe2551d1a7b2e8b713341e2cb4fc0aa7dcf966fa4327a5226755", size = 978693, upload-time = "2025-01-22T15:41:29.403Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/8a/0b/9fcc47d19c48b59121088dd6da2488a49d5f72dacf8262e2790a1d2c7d15/pygments-2.19.1-py3-none-any.whl", hash = "sha256:9ea1544ad55cecf4b8242fab6dd35a93bbce657034b0611ee383099054ab6d8c", size = 1225293 }, + { url = "https://files.pythonhosted.org/packages/7b/8f/c4d9bafc34ad7ad5d8dc16dd1347ee0e507a52c3adb6bfa8887e1c6a26ba/executing-2.2.0-py2.py3-none-any.whl", hash = "sha256:11387150cad388d62750327a53d3339fad4888b39a6fe233c3afbb54ecffd3aa", size = 26702, upload-time = "2025-01-22T15:41:25.929Z" }, ] [[package]] -name = "pyhelper-utils" -version = "1.0.11" +name = "fastjsonschema" +version = "2.21.1" source = { registry = "https://pypi.org/simple" } -dependencies = [ - { name = "ipdb", marker = "sys_platform == 'darwin' or sys_platform == 'linux'" }, - { name = "python-rrmngmnt", marker = "sys_platform == 'darwin' or sys_platform == 'linux'" }, - { name = "python-simple-logger", marker = "sys_platform == 'darwin' or sys_platform == 'linux'" }, - { name = "requests", marker = "sys_platform == 'darwin' or sys_platform == 'linux'" }, - { name = "rich", marker = "sys_platform == 'darwin' or sys_platform == 'linux'" }, +sdist = { url = "https://files.pythonhosted.org/packages/8b/50/4b769ce1ac4071a1ef6d86b1a3fb56cdc3a37615e8c5519e1af96cdac366/fastjsonschema-2.21.1.tar.gz", hash = "sha256:794d4f0a58f848961ba16af7b9c85a3e88cd360df008c59aac6fc5ae9323b5d4", size = 373939, upload-time = "2024-12-02T10:55:15.133Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/90/2b/0817a2b257fe88725c25589d89aec060581aabf668707a8d03b2e9e0cb2a/fastjsonschema-2.21.1-py3-none-any.whl", hash = "sha256:c9e5b7e908310918cf494a434eeb31384dd84a98b57a30bcb1f535015b554667", size = 23924, upload-time = "2024-12-02T10:55:07.599Z" }, ] -sdist = { url = "https://files.pythonhosted.org/packages/2b/4a/ff61ccba848d116d65baa7fe49e97b7257dbff86dee8f6a0d129683caddb/pyhelper_utils-1.0.11.tar.gz", hash = "sha256:53d461490821ba73d54946be6b79f2fc4ff1eaa3b4218b0afbde77aa78b44c74", size = 10791 } [[package]] -name = "pynacl" -version = "1.5.0" +name = "filelock" +version = "3.18.0" source = { registry = "https://pypi.org/simple" } -dependencies = [ - { name = "cffi", marker = "sys_platform == 'darwin' or sys_platform == 'linux'" }, +sdist = { url = "https://files.pythonhosted.org/packages/0a/10/c23352565a6544bdc5353e0b15fc1c563352101f30e24bf500207a54df9a/filelock-3.18.0.tar.gz", hash = "sha256:adbc88eabb99d2fec8c9c1b229b171f18afa655400173ddc653d5d01501fb9f2", size = 18075, upload-time = "2025-03-14T07:11:40.47Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/4d/36/2a115987e2d8c300a974597416d9de88f2444426de9571f4b59b2cca3acc/filelock-3.18.0-py3-none-any.whl", hash = "sha256:c401f4f8377c4464e6db25fff06205fd89bdd83b65eb0488ed1b160f780e21de", size = 16215, upload-time = "2025-03-14T07:11:39.145Z" }, +] + +[[package]] +name = "flake8" +version = "7.1.2" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "mccabe", marker = "sys_platform == 'linux'" }, + { name = "pycodestyle", marker = "sys_platform == 'linux'" }, + { name = "pyflakes", marker = "sys_platform == 'linux'" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/58/16/3f2a0bb700ad65ac9663262905a025917c020a3f92f014d2ba8964b4602c/flake8-7.1.2.tar.gz", hash = "sha256:c586ffd0b41540951ae41af572e6790dbd49fc12b3aa2541685d253d9bd504bd", size = 48119, upload-time = "2025-02-16T18:45:44.296Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/35/f8/08d37b2cd89da306e3520bd27f8a85692122b42b56c0c2c3784ff09c022f/flake8-7.1.2-py2.py3-none-any.whl", hash = "sha256:1cbc62e65536f65e6d754dfe6f1bada7f5cf392d6f5db3c2b85892466c3e7c1a", size = 57745, upload-time = "2025-02-16T18:45:42.351Z" }, +] + +[[package]] +name = "flatbuffers" +version = "25.2.10" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/e4/30/eb5dce7994fc71a2f685d98ec33cc660c0a5887db5610137e60d8cbc4489/flatbuffers-25.2.10.tar.gz", hash = "sha256:97e451377a41262f8d9bd4295cc836133415cc03d8cb966410a4af92eb00d26e", size = 22170, upload-time = "2025-02-11T04:26:46.257Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/b8/25/155f9f080d5e4bc0082edfda032ea2bc2b8fab3f4d25d46c1e9dd22a1a89/flatbuffers-25.2.10-py2.py3-none-any.whl", hash = "sha256:ebba5f4d5ea615af3f7fd70fc310636fbb2bbd1f566ac0a23d98dd412de50051", size = 30953, upload-time = "2025-02-11T04:26:44.484Z" }, +] + +[[package]] +name = "fonttools" +version = "4.58.4" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/2e/5a/1124b2c8cb3a8015faf552e92714040bcdbc145dfa29928891b02d147a18/fonttools-4.58.4.tar.gz", hash = "sha256:928a8009b9884ed3aae17724b960987575155ca23c6f0b8146e400cc9e0d44ba", size = 3525026, upload-time = "2025-06-13T17:25:15.426Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/17/7b/cc6e9bb41bab223bd2dc70ba0b21386b85f604e27f4c3206b4205085a2ab/fonttools-4.58.4-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:a3841991c9ee2dc0562eb7f23d333d34ce81e8e27c903846f0487da21e0028eb", size = 2768901, upload-time = "2025-06-13T17:24:05.901Z" }, + { url = "https://files.pythonhosted.org/packages/3d/15/98d75df9f2b4e7605f3260359ad6e18e027c11fa549f74fce567270ac891/fonttools-4.58.4-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:3c98f91b6a9604e7ffb5ece6ea346fa617f967c2c0944228801246ed56084664", size = 2328696, upload-time = "2025-06-13T17:24:09.18Z" }, + { url = "https://files.pythonhosted.org/packages/a8/c8/dc92b80f5452c9c40164e01b3f78f04b835a00e673bd9355ca257008ff61/fonttools-4.58.4-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:ab9f891eb687ddf6a4e5f82901e00f992e18012ca97ab7acd15f13632acd14c1", size = 5018830, upload-time = "2025-06-13T17:24:11.282Z" }, + { url = "https://files.pythonhosted.org/packages/19/48/8322cf177680505d6b0b6062e204f01860cb573466a88077a9b795cb70e8/fonttools-4.58.4-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:891c5771e8f0094b7c0dc90eda8fc75e72930b32581418f2c285a9feedfd9a68", size = 4960922, upload-time = "2025-06-13T17:24:14.9Z" }, + { url = "https://files.pythonhosted.org/packages/14/e0/2aff149ed7eb0916de36da513d473c6fff574a7146891ce42de914899395/fonttools-4.58.4-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:43ba4d9646045c375d22e3473b7d82b18b31ee2ac715cd94220ffab7bc2d5c1d", size = 4997135, upload-time = "2025-06-13T17:24:16.959Z" }, + { url = "https://files.pythonhosted.org/packages/e6/6f/4d9829b29a64a2e63a121cb11ecb1b6a9524086eef3e35470949837a1692/fonttools-4.58.4-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:33d19f16e6d2ffd6669bda574a6589941f6c99a8d5cfb9f464038244c71555de", size = 5108701, upload-time = "2025-06-13T17:24:18.849Z" }, + { url = "https://files.pythonhosted.org/packages/6f/1e/2d656ddd1b0cd0d222f44b2d008052c2689e66b702b9af1cd8903ddce319/fonttools-4.58.4-cp311-cp311-win32.whl", hash = "sha256:b59e5109b907da19dc9df1287454821a34a75f2632a491dd406e46ff432c2a24", size = 2200177, upload-time = "2025-06-13T17:24:20.823Z" }, + { url = "https://files.pythonhosted.org/packages/fb/83/ba71ad053fddf4157cb0697c8da8eff6718d059f2a22986fa5f312b49c92/fonttools-4.58.4-cp311-cp311-win_amd64.whl", hash = "sha256:3d471a5b567a0d1648f2e148c9a8bcf00d9ac76eb89e976d9976582044cc2509", size = 2247892, upload-time = "2025-06-13T17:24:22.927Z" }, + { url = "https://files.pythonhosted.org/packages/04/3c/1d1792bfe91ef46f22a3d23b4deb514c325e73c17d4f196b385b5e2faf1c/fonttools-4.58.4-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:462211c0f37a278494e74267a994f6be9a2023d0557aaa9ecbcbfce0f403b5a6", size = 2754082, upload-time = "2025-06-13T17:24:24.862Z" }, + { url = "https://files.pythonhosted.org/packages/2a/1f/2b261689c901a1c3bc57a6690b0b9fc21a9a93a8b0c83aae911d3149f34e/fonttools-4.58.4-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:0c7a12fb6f769165547f00fcaa8d0df9517603ae7e04b625e5acb8639809b82d", size = 2321677, upload-time = "2025-06-13T17:24:26.815Z" }, + { url = "https://files.pythonhosted.org/packages/fe/6b/4607add1755a1e6581ae1fc0c9a640648e0d9cdd6591cc2d581c2e07b8c3/fonttools-4.58.4-cp312-cp312-manylinux1_x86_64.manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_5_x86_64.whl", hash = "sha256:2d42c63020a922154add0a326388a60a55504629edc3274bc273cd3806b4659f", size = 4896354, upload-time = "2025-06-13T17:24:28.428Z" }, + { url = "https://files.pythonhosted.org/packages/cd/95/34b4f483643d0cb11a1f830b72c03fdd18dbd3792d77a2eb2e130a96fada/fonttools-4.58.4-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:8f2b4e6fd45edc6805f5f2c355590b092ffc7e10a945bd6a569fc66c1d2ae7aa", size = 4941633, upload-time = "2025-06-13T17:24:30.568Z" }, + { url = "https://files.pythonhosted.org/packages/81/ac/9bafbdb7694059c960de523e643fa5a61dd2f698f3f72c0ca18ae99257c7/fonttools-4.58.4-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:f155b927f6efb1213a79334e4cb9904d1e18973376ffc17a0d7cd43d31981f1e", size = 4886170, upload-time = "2025-06-13T17:24:32.724Z" }, + { url = "https://files.pythonhosted.org/packages/ae/44/a3a3b70d5709405f7525bb7cb497b4e46151e0c02e3c8a0e40e5e9fe030b/fonttools-4.58.4-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:e38f687d5de97c7fb7da3e58169fb5ba349e464e141f83c3c2e2beb91d317816", size = 5037851, upload-time = "2025-06-13T17:24:35.034Z" }, + { url = "https://files.pythonhosted.org/packages/21/cb/e8923d197c78969454eb876a4a55a07b59c9c4c46598f02b02411dc3b45c/fonttools-4.58.4-cp312-cp312-win32.whl", hash = "sha256:636c073b4da9db053aa683db99580cac0f7c213a953b678f69acbca3443c12cc", size = 2187428, upload-time = "2025-06-13T17:24:36.996Z" }, + { url = "https://files.pythonhosted.org/packages/46/e6/fe50183b1a0e1018e7487ee740fa8bb127b9f5075a41e20d017201e8ab14/fonttools-4.58.4-cp312-cp312-win_amd64.whl", hash = "sha256:82e8470535743409b30913ba2822e20077acf9ea70acec40b10fcf5671dceb58", size = 2236649, upload-time = "2025-06-13T17:24:38.985Z" }, + { url = "https://files.pythonhosted.org/packages/0b/2f/c536b5b9bb3c071e91d536a4d11f969e911dbb6b227939f4c5b0bca090df/fonttools-4.58.4-py3-none-any.whl", hash = "sha256:a10ce13a13f26cbb9f37512a4346bb437ad7e002ff6fa966a7ce7ff5ac3528bd", size = 1114660, upload-time = "2025-06-13T17:25:13.321Z" }, +] + +[[package]] +name = "fqdn" +version = "1.5.1" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/30/3e/a80a8c077fd798951169626cde3e239adeba7dab75deb3555716415bd9b0/fqdn-1.5.1.tar.gz", hash = "sha256:105ed3677e767fb5ca086a0c1f4bb66ebc3c100be518f0e0d755d9eae164d89f", size = 6015, upload-time = "2021-03-11T07:16:29.08Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/cf/58/8acf1b3e91c58313ce5cb67df61001fc9dcd21be4fadb76c1a2d540e09ed/fqdn-1.5.1-py3-none-any.whl", hash = "sha256:3a179af3761e4df6eb2e026ff9e1a3033d3587bf980a0b1b2e1e5d08d7358014", size = 9121, upload-time = "2021-03-11T07:16:28.351Z" }, +] + +[[package]] +name = "frozendict" +version = "2.4.6" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/bb/59/19eb300ba28e7547538bdf603f1c6c34793240a90e1a7b61b65d8517e35e/frozendict-2.4.6.tar.gz", hash = "sha256:df7cd16470fbd26fc4969a208efadc46319334eb97def1ddf48919b351192b8e", size = 316416, upload-time = "2024-10-13T12:15:32.449Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/04/13/d9839089b900fa7b479cce495d62110cddc4bd5630a04d8469916c0e79c5/frozendict-2.4.6-py311-none-any.whl", hash = "sha256:d065db6a44db2e2375c23eac816f1a022feb2fa98cbb50df44a9e83700accbea", size = 16148, upload-time = "2024-10-13T12:15:26.839Z" }, + { url = "https://files.pythonhosted.org/packages/ba/d0/d482c39cee2ab2978a892558cf130681d4574ea208e162da8958b31e9250/frozendict-2.4.6-py312-none-any.whl", hash = "sha256:49344abe90fb75f0f9fdefe6d4ef6d4894e640fadab71f11009d52ad97f370b9", size = 16146, upload-time = "2024-10-13T12:15:28.16Z" }, +] + +[[package]] +name = "frozenlist" +version = "1.7.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/79/b1/b64018016eeb087db503b038296fd782586432b9c077fc5c7839e9cb6ef6/frozenlist-1.7.0.tar.gz", hash = "sha256:2e310d81923c2437ea8670467121cc3e9b0f76d3043cc1d2331d56c7fb7a3a8f", size = 45078, upload-time = "2025-06-09T23:02:35.538Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/34/7e/803dde33760128acd393a27eb002f2020ddb8d99d30a44bfbaab31c5f08a/frozenlist-1.7.0-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:aa51e147a66b2d74de1e6e2cf5921890de6b0f4820b257465101d7f37b49fb5a", size = 82251, upload-time = "2025-06-09T23:00:16.279Z" }, + { url = "https://files.pythonhosted.org/packages/75/a9/9c2c5760b6ba45eae11334db454c189d43d34a4c0b489feb2175e5e64277/frozenlist-1.7.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:9b35db7ce1cd71d36ba24f80f0c9e7cff73a28d7a74e91fe83e23d27c7828750", size = 48183, upload-time = "2025-06-09T23:00:17.698Z" }, + { url = "https://files.pythonhosted.org/packages/47/be/4038e2d869f8a2da165f35a6befb9158c259819be22eeaf9c9a8f6a87771/frozenlist-1.7.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:34a69a85e34ff37791e94542065c8416c1afbf820b68f720452f636d5fb990cd", size = 47107, upload-time = "2025-06-09T23:00:18.952Z" }, + { url = "https://files.pythonhosted.org/packages/79/26/85314b8a83187c76a37183ceed886381a5f992975786f883472fcb6dc5f2/frozenlist-1.7.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4a646531fa8d82c87fe4bb2e596f23173caec9185bfbca5d583b4ccfb95183e2", size = 237333, upload-time = "2025-06-09T23:00:20.275Z" }, + { url = "https://files.pythonhosted.org/packages/1f/fd/e5b64f7d2c92a41639ffb2ad44a6a82f347787abc0c7df5f49057cf11770/frozenlist-1.7.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.manylinux_2_31_armv7l.whl", hash = "sha256:79b2ffbba483f4ed36a0f236ccb85fbb16e670c9238313709638167670ba235f", size = 231724, upload-time = "2025-06-09T23:00:21.705Z" }, + { url = "https://files.pythonhosted.org/packages/20/fb/03395c0a43a5976af4bf7534759d214405fbbb4c114683f434dfdd3128ef/frozenlist-1.7.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:a26f205c9ca5829cbf82bb2a84b5c36f7184c4316617d7ef1b271a56720d6b30", size = 245842, upload-time = "2025-06-09T23:00:23.148Z" }, + { url = "https://files.pythonhosted.org/packages/d0/15/c01c8e1dffdac5d9803507d824f27aed2ba76b6ed0026fab4d9866e82f1f/frozenlist-1.7.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:bcacfad3185a623fa11ea0e0634aac7b691aa925d50a440f39b458e41c561d98", size = 239767, upload-time = "2025-06-09T23:00:25.103Z" }, + { url = "https://files.pythonhosted.org/packages/14/99/3f4c6fe882c1f5514b6848aa0a69b20cb5e5d8e8f51a339d48c0e9305ed0/frozenlist-1.7.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:72c1b0fe8fe451b34f12dce46445ddf14bd2a5bcad7e324987194dc8e3a74c86", size = 224130, upload-time = "2025-06-09T23:00:27.061Z" }, + { url = "https://files.pythonhosted.org/packages/4d/83/220a374bd7b2aeba9d0725130665afe11de347d95c3620b9b82cc2fcab97/frozenlist-1.7.0-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:61d1a5baeaac6c0798ff6edfaeaa00e0e412d49946c53fae8d4b8e8b3566c4ae", size = 235301, upload-time = "2025-06-09T23:00:29.02Z" }, + { url = "https://files.pythonhosted.org/packages/03/3c/3e3390d75334a063181625343e8daab61b77e1b8214802cc4e8a1bb678fc/frozenlist-1.7.0-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:7edf5c043c062462f09b6820de9854bf28cc6cc5b6714b383149745e287181a8", size = 234606, upload-time = "2025-06-09T23:00:30.514Z" }, + { url = "https://files.pythonhosted.org/packages/23/1e/58232c19608b7a549d72d9903005e2d82488f12554a32de2d5fb59b9b1ba/frozenlist-1.7.0-cp311-cp311-musllinux_1_2_armv7l.whl", hash = "sha256:d50ac7627b3a1bd2dcef6f9da89a772694ec04d9a61b66cf87f7d9446b4a0c31", size = 248372, upload-time = "2025-06-09T23:00:31.966Z" }, + { url = "https://files.pythonhosted.org/packages/c0/a4/e4a567e01702a88a74ce8a324691e62a629bf47d4f8607f24bf1c7216e7f/frozenlist-1.7.0-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:ce48b2fece5aeb45265bb7a58259f45027db0abff478e3077e12b05b17fb9da7", size = 229860, upload-time = "2025-06-09T23:00:33.375Z" }, + { url = "https://files.pythonhosted.org/packages/73/a6/63b3374f7d22268b41a9db73d68a8233afa30ed164c46107b33c4d18ecdd/frozenlist-1.7.0-cp311-cp311-musllinux_1_2_ppc64le.whl", hash = "sha256:fe2365ae915a1fafd982c146754e1de6ab3478def8a59c86e1f7242d794f97d5", size = 245893, upload-time = "2025-06-09T23:00:35.002Z" }, + { url = "https://files.pythonhosted.org/packages/6d/eb/d18b3f6e64799a79673c4ba0b45e4cfbe49c240edfd03a68be20002eaeaa/frozenlist-1.7.0-cp311-cp311-musllinux_1_2_s390x.whl", hash = "sha256:45a6f2fdbd10e074e8814eb98b05292f27bad7d1883afbe009d96abdcf3bc898", size = 246323, upload-time = "2025-06-09T23:00:36.468Z" }, + { url = "https://files.pythonhosted.org/packages/5a/f5/720f3812e3d06cd89a1d5db9ff6450088b8f5c449dae8ffb2971a44da506/frozenlist-1.7.0-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:21884e23cffabb157a9dd7e353779077bf5b8f9a58e9b262c6caad2ef5f80a56", size = 233149, upload-time = "2025-06-09T23:00:37.963Z" }, + { url = "https://files.pythonhosted.org/packages/69/68/03efbf545e217d5db8446acfd4c447c15b7c8cf4dbd4a58403111df9322d/frozenlist-1.7.0-cp311-cp311-win32.whl", hash = "sha256:284d233a8953d7b24f9159b8a3496fc1ddc00f4db99c324bd5fb5f22d8698ea7", size = 39565, upload-time = "2025-06-09T23:00:39.753Z" }, + { url = "https://files.pythonhosted.org/packages/58/17/fe61124c5c333ae87f09bb67186d65038834a47d974fc10a5fadb4cc5ae1/frozenlist-1.7.0-cp311-cp311-win_amd64.whl", hash = "sha256:387cbfdcde2f2353f19c2f66bbb52406d06ed77519ac7ee21be0232147c2592d", size = 44019, upload-time = "2025-06-09T23:00:40.988Z" }, + { url = "https://files.pythonhosted.org/packages/ef/a2/c8131383f1e66adad5f6ecfcce383d584ca94055a34d683bbb24ac5f2f1c/frozenlist-1.7.0-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:3dbf9952c4bb0e90e98aec1bd992b3318685005702656bc6f67c1a32b76787f2", size = 81424, upload-time = "2025-06-09T23:00:42.24Z" }, + { url = "https://files.pythonhosted.org/packages/4c/9d/02754159955088cb52567337d1113f945b9e444c4960771ea90eb73de8db/frozenlist-1.7.0-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:1f5906d3359300b8a9bb194239491122e6cf1444c2efb88865426f170c262cdb", size = 47952, upload-time = "2025-06-09T23:00:43.481Z" }, + { url = "https://files.pythonhosted.org/packages/01/7a/0046ef1bd6699b40acd2067ed6d6670b4db2f425c56980fa21c982c2a9db/frozenlist-1.7.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:3dabd5a8f84573c8d10d8859a50ea2dec01eea372031929871368c09fa103478", size = 46688, upload-time = "2025-06-09T23:00:44.793Z" }, + { url = "https://files.pythonhosted.org/packages/d6/a2/a910bafe29c86997363fb4c02069df4ff0b5bc39d33c5198b4e9dd42d8f8/frozenlist-1.7.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:aa57daa5917f1738064f302bf2626281a1cb01920c32f711fbc7bc36111058a8", size = 243084, upload-time = "2025-06-09T23:00:46.125Z" }, + { url = "https://files.pythonhosted.org/packages/64/3e/5036af9d5031374c64c387469bfcc3af537fc0f5b1187d83a1cf6fab1639/frozenlist-1.7.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.manylinux_2_31_armv7l.whl", hash = "sha256:c193dda2b6d49f4c4398962810fa7d7c78f032bf45572b3e04dd5249dff27e08", size = 233524, upload-time = "2025-06-09T23:00:47.73Z" }, + { url = "https://files.pythonhosted.org/packages/06/39/6a17b7c107a2887e781a48ecf20ad20f1c39d94b2a548c83615b5b879f28/frozenlist-1.7.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:bfe2b675cf0aaa6d61bf8fbffd3c274b3c9b7b1623beb3809df8a81399a4a9c4", size = 248493, upload-time = "2025-06-09T23:00:49.742Z" }, + { url = "https://files.pythonhosted.org/packages/be/00/711d1337c7327d88c44d91dd0f556a1c47fb99afc060ae0ef66b4d24793d/frozenlist-1.7.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:8fc5d5cda37f62b262405cf9652cf0856839c4be8ee41be0afe8858f17f4c94b", size = 244116, upload-time = "2025-06-09T23:00:51.352Z" }, + { url = "https://files.pythonhosted.org/packages/24/fe/74e6ec0639c115df13d5850e75722750adabdc7de24e37e05a40527ca539/frozenlist-1.7.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:b0d5ce521d1dd7d620198829b87ea002956e4319002ef0bc8d3e6d045cb4646e", size = 224557, upload-time = "2025-06-09T23:00:52.855Z" }, + { url = "https://files.pythonhosted.org/packages/8d/db/48421f62a6f77c553575201e89048e97198046b793f4a089c79a6e3268bd/frozenlist-1.7.0-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:488d0a7d6a0008ca0db273c542098a0fa9e7dfaa7e57f70acef43f32b3f69dca", size = 241820, upload-time = "2025-06-09T23:00:54.43Z" }, + { url = "https://files.pythonhosted.org/packages/1d/fa/cb4a76bea23047c8462976ea7b7a2bf53997a0ca171302deae9d6dd12096/frozenlist-1.7.0-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:15a7eaba63983d22c54d255b854e8108e7e5f3e89f647fc854bd77a237e767df", size = 236542, upload-time = "2025-06-09T23:00:56.409Z" }, + { url = "https://files.pythonhosted.org/packages/5d/32/476a4b5cfaa0ec94d3f808f193301debff2ea42288a099afe60757ef6282/frozenlist-1.7.0-cp312-cp312-musllinux_1_2_armv7l.whl", hash = "sha256:1eaa7e9c6d15df825bf255649e05bd8a74b04a4d2baa1ae46d9c2d00b2ca2cb5", size = 249350, upload-time = "2025-06-09T23:00:58.468Z" }, + { url = "https://files.pythonhosted.org/packages/8d/ba/9a28042f84a6bf8ea5dbc81cfff8eaef18d78b2a1ad9d51c7bc5b029ad16/frozenlist-1.7.0-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:e4389e06714cfa9d47ab87f784a7c5be91d3934cd6e9a7b85beef808297cc025", size = 225093, upload-time = "2025-06-09T23:01:00.015Z" }, + { url = "https://files.pythonhosted.org/packages/bc/29/3a32959e68f9cf000b04e79ba574527c17e8842e38c91d68214a37455786/frozenlist-1.7.0-cp312-cp312-musllinux_1_2_ppc64le.whl", hash = "sha256:73bd45e1488c40b63fe5a7df892baf9e2a4d4bb6409a2b3b78ac1c6236178e01", size = 245482, upload-time = "2025-06-09T23:01:01.474Z" }, + { url = "https://files.pythonhosted.org/packages/80/e8/edf2f9e00da553f07f5fa165325cfc302dead715cab6ac8336a5f3d0adc2/frozenlist-1.7.0-cp312-cp312-musllinux_1_2_s390x.whl", hash = "sha256:99886d98e1643269760e5fe0df31e5ae7050788dd288947f7f007209b8c33f08", size = 249590, upload-time = "2025-06-09T23:01:02.961Z" }, + { url = "https://files.pythonhosted.org/packages/1c/80/9a0eb48b944050f94cc51ee1c413eb14a39543cc4f760ed12657a5a3c45a/frozenlist-1.7.0-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:290a172aae5a4c278c6da8a96222e6337744cd9c77313efe33d5670b9f65fc43", size = 237785, upload-time = "2025-06-09T23:01:05.095Z" }, + { url = "https://files.pythonhosted.org/packages/f3/74/87601e0fb0369b7a2baf404ea921769c53b7ae00dee7dcfe5162c8c6dbf0/frozenlist-1.7.0-cp312-cp312-win32.whl", hash = "sha256:426c7bc70e07cfebc178bc4c2bf2d861d720c4fff172181eeb4a4c41d4ca2ad3", size = 39487, upload-time = "2025-06-09T23:01:06.54Z" }, + { url = "https://files.pythonhosted.org/packages/0b/15/c026e9a9fc17585a9d461f65d8593d281fedf55fbf7eb53f16c6df2392f9/frozenlist-1.7.0-cp312-cp312-win_amd64.whl", hash = "sha256:563b72efe5da92e02eb68c59cb37205457c977aa7a449ed1b37e6939e5c47c6a", size = 43874, upload-time = "2025-06-09T23:01:07.752Z" }, + { url = "https://files.pythonhosted.org/packages/ee/45/b82e3c16be2182bff01179db177fe144d58b5dc787a7d4492c6ed8b9317f/frozenlist-1.7.0-py3-none-any.whl", hash = "sha256:9a5af342e34f7e97caf8c995864c7a396418ae2859cc6fdf1b1073020d516a7e", size = 13106, upload-time = "2025-06-09T23:02:34.204Z" }, +] + +[[package]] +name = "fsspec" +version = "2024.12.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/ee/11/de70dee31455c546fbc88301971ec03c328f3d1138cfba14263f651e9551/fsspec-2024.12.0.tar.gz", hash = "sha256:670700c977ed2fb51e0d9f9253177ed20cbde4a3e5c0283cc5385b5870c8533f", size = 291600, upload-time = "2024-12-19T19:57:30.333Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/de/86/5486b0188d08aa643e127774a99bac51ffa6cf343e3deb0583956dca5b22/fsspec-2024.12.0-py3-none-any.whl", hash = "sha256:b520aed47ad9804237ff878b504267a3b0b441e97508bd6d2d8774e3db85cee2", size = 183862, upload-time = "2024-12-19T19:57:28.258Z" }, +] + +[package.optional-dependencies] +http = [ + { name = "aiohttp", marker = "sys_platform == 'linux'" }, +] + +[[package]] +name = "gast" +version = "0.6.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/3c/14/c566f5ca00c115db7725263408ff952b8ae6d6a4e792ef9c84e77d9af7a1/gast-0.6.0.tar.gz", hash = "sha256:88fc5300d32c7ac6ca7b515310862f71e6fdf2c029bbec7c66c0f5dd47b6b1fb", size = 27708, upload-time = "2024-06-27T20:31:49.527Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/a3/61/8001b38461d751cd1a0c3a6ae84346796a5758123f3ed97a1b121dfbf4f3/gast-0.6.0-py3-none-any.whl", hash = "sha256:52b182313f7330389f72b069ba00f174cfe2a06411099547288839c6cbafbd54", size = 21173, upload-time = "2024-07-09T13:15:15.615Z" }, +] + +[[package]] +name = "gitdb" +version = "4.0.12" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "smmap", marker = "sys_platform == 'linux'" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/72/94/63b0fc47eb32792c7ba1fe1b694daec9a63620db1e313033d18140c2320a/gitdb-4.0.12.tar.gz", hash = "sha256:5ef71f855d191a3326fcfbc0d5da835f26b13fbcba60c32c21091c349ffdb571", size = 394684, upload-time = "2025-01-02T07:20:46.413Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/a0/61/5c78b91c3143ed5c14207f463aecfc8f9dbb5092fb2869baf37c273b2705/gitdb-4.0.12-py3-none-any.whl", hash = "sha256:67073e15955400952c6565cc3e707c554a4eea2e428946f7a4c162fab9bd9bcf", size = 62794, upload-time = "2025-01-02T07:20:43.624Z" }, +] + +[[package]] +name = "gitpython" +version = "3.1.44" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "gitdb", marker = "sys_platform == 'linux'" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/c0/89/37df0b71473153574a5cdef8f242de422a0f5d26d7a9e231e6f169b4ad14/gitpython-3.1.44.tar.gz", hash = "sha256:c87e30b26253bf5418b01b0660f818967f3c503193838337fe5e573331249269", size = 214196, upload-time = "2025-01-02T07:32:43.59Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/1d/9a/4114a9057db2f1462d5c8f8390ab7383925fe1ac012eaa42402ad65c2963/GitPython-3.1.44-py3-none-any.whl", hash = "sha256:9e0e10cda9bed1ee64bc9a6de50e7e38a9c9943241cd7f585f6df3ed28011110", size = 207599, upload-time = "2025-01-02T07:32:40.731Z" }, +] + +[[package]] +name = "google-api-core" +version = "2.25.1" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "google-auth", marker = "sys_platform == 'linux'" }, + { name = "googleapis-common-protos", marker = "sys_platform == 'linux'" }, + { name = "proto-plus", marker = "sys_platform == 'linux'" }, + { name = "protobuf", marker = "sys_platform == 'linux'" }, + { name = "requests", marker = "sys_platform == 'linux'" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/dc/21/e9d043e88222317afdbdb567165fdbc3b0aad90064c7e0c9eb0ad9955ad8/google_api_core-2.25.1.tar.gz", hash = "sha256:d2aaa0b13c78c61cb3f4282c464c046e45fbd75755683c9c525e6e8f7ed0a5e8", size = 165443, upload-time = "2025-06-12T20:52:20.439Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/14/4b/ead00905132820b623732b175d66354e9d3e69fcf2a5dcdab780664e7896/google_api_core-2.25.1-py3-none-any.whl", hash = "sha256:8a2a56c1fef82987a524371f99f3bd0143702fecc670c72e600c1cda6bf8dbb7", size = 160807, upload-time = "2025-06-12T20:52:19.334Z" }, +] + +[[package]] +name = "google-auth" +version = "2.38.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "cachetools", marker = "sys_platform == 'linux'" }, + { name = "pyasn1-modules", marker = "sys_platform == 'linux'" }, + { name = "rsa", marker = "sys_platform == 'linux'" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/c6/eb/d504ba1daf190af6b204a9d4714d457462b486043744901a6eeea711f913/google_auth-2.38.0.tar.gz", hash = "sha256:8285113607d3b80a3f1543b75962447ba8a09fe85783432a784fdeef6ac094c4", size = 270866, upload-time = "2025-01-23T01:05:29.119Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/9d/47/603554949a37bca5b7f894d51896a9c534b9eab808e2520a748e081669d0/google_auth-2.38.0-py2.py3-none-any.whl", hash = "sha256:e7dae6694313f434a2727bf2906f27ad259bae090d7aa896590d86feec3d9d4a", size = 210770, upload-time = "2025-01-23T01:05:26.572Z" }, +] + +[[package]] +name = "google-auth-oauthlib" +version = "1.0.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "google-auth", marker = "sys_platform == 'linux'" }, + { name = "requests-oauthlib", marker = "sys_platform == 'linux'" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/e3/b4/ef2170c5f6aa5bc2461bab959a84e56d2819ce26662b50038d2d0602223e/google-auth-oauthlib-1.0.0.tar.gz", hash = "sha256:e375064964820b47221a7e1b7ee1fd77051b6323c3f9e3e19785f78ab67ecfc5", size = 20530, upload-time = "2023-02-07T20:53:20.679Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/4a/07/8d9a8186e6768b55dfffeb57c719bc03770cf8a970a074616ae6f9e26a57/google_auth_oauthlib-1.0.0-py2.py3-none-any.whl", hash = "sha256:95880ca704928c300f48194d1770cf5b1462835b6e49db61445a520f793fd5fb", size = 18926, upload-time = "2023-02-07T20:53:18.837Z" }, +] + +[[package]] +name = "google-cloud-core" +version = "2.4.3" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "google-api-core", marker = "sys_platform == 'linux'" }, + { name = "google-auth", marker = "sys_platform == 'linux'" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/d6/b8/2b53838d2acd6ec6168fd284a990c76695e84c65deee79c9f3a4276f6b4f/google_cloud_core-2.4.3.tar.gz", hash = "sha256:1fab62d7102844b278fe6dead3af32408b1df3eb06f5c7e8634cbd40edc4da53", size = 35861, upload-time = "2025-03-10T21:05:38.948Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/40/86/bda7241a8da2d28a754aad2ba0f6776e35b67e37c36ae0c45d49370f1014/google_cloud_core-2.4.3-py2.py3-none-any.whl", hash = "sha256:5130f9f4c14b4fafdff75c79448f9495cfade0d8775facf1b09c3bf67e027f6e", size = 29348, upload-time = "2025-03-10T21:05:37.785Z" }, +] + +[[package]] +name = "google-cloud-storage" +version = "2.19.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "google-api-core", marker = "sys_platform == 'linux'" }, + { name = "google-auth", marker = "sys_platform == 'linux'" }, + { name = "google-cloud-core", marker = "sys_platform == 'linux'" }, + { name = "google-crc32c", marker = "sys_platform == 'linux'" }, + { name = "google-resumable-media", marker = "sys_platform == 'linux'" }, + { name = "requests", marker = "sys_platform == 'linux'" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/36/76/4d965702e96bb67976e755bed9828fa50306dca003dbee08b67f41dd265e/google_cloud_storage-2.19.0.tar.gz", hash = "sha256:cd05e9e7191ba6cb68934d8eb76054d9be4562aa89dbc4236feee4d7d51342b2", size = 5535488, upload-time = "2024-12-05T01:35:06.49Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/d5/94/6db383d8ee1adf45dc6c73477152b82731fa4c4a46d9c1932cc8757e0fd4/google_cloud_storage-2.19.0-py2.py3-none-any.whl", hash = "sha256:aeb971b5c29cf8ab98445082cbfe7b161a1f48ed275822f59ed3f1524ea54fba", size = 131787, upload-time = "2024-12-05T01:35:04.736Z" }, +] + +[[package]] +name = "google-crc32c" +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/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" }, + { url = "https://files.pythonhosted.org/packages/c9/16/a3842c2cf591093b111d4a5e2bfb478ac6692d02f1b386d2a33283a19dc9/google_crc32c-1.7.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d68e17bad8f7dd9a49181a1f5a8f4b251c6dbc8cc96fb79f1d321dfd57d66f53", size = 32669, upload-time = "2025-03-26T14:41:31.432Z" }, + { url = "https://files.pythonhosted.org/packages/04/17/ed9aba495916fcf5fe4ecb2267ceb851fc5f273c4e4625ae453350cfd564/google_crc32c-1.7.1-cp311-cp311-win_amd64.whl", hash = "sha256:6335de12921f06e1f774d0dd1fbea6bf610abe0887a1638f64d694013138be5d", size = 33476, upload-time = "2025-03-26T14:29:10.211Z" }, + { url = "https://files.pythonhosted.org/packages/dd/b7/787e2453cf8639c94b3d06c9d61f512234a82e1d12d13d18584bd3049904/google_crc32c-1.7.1-cp312-cp312-macosx_12_0_arm64.whl", hash = "sha256:2d73a68a653c57281401871dd4aeebbb6af3191dcac751a76ce430df4d403194", size = 30470, upload-time = "2025-03-26T14:34:31.655Z" }, + { url = "https://files.pythonhosted.org/packages/ed/b4/6042c2b0cbac3ec3a69bb4c49b28d2f517b7a0f4a0232603c42c58e22b44/google_crc32c-1.7.1-cp312-cp312-macosx_12_0_x86_64.whl", hash = "sha256:22beacf83baaf59f9d3ab2bbb4db0fb018da8e5aebdce07ef9f09fce8220285e", size = 30315, upload-time = "2025-03-26T15:01:54.634Z" }, + { url = "https://files.pythonhosted.org/packages/29/ad/01e7a61a5d059bc57b702d9ff6a18b2585ad97f720bd0a0dbe215df1ab0e/google_crc32c-1.7.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:19eafa0e4af11b0a4eb3974483d55d2d77ad1911e6cf6f832e1574f6781fd337", size = 33180, upload-time = "2025-03-26T14:41:32.168Z" }, + { url = "https://files.pythonhosted.org/packages/3b/a5/7279055cf004561894ed3a7bfdf5bf90a53f28fadd01af7cd166e88ddf16/google_crc32c-1.7.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b6d86616faaea68101195c6bdc40c494e4d76f41e07a37ffdef270879c15fb65", size = 32794, upload-time = "2025-03-26T14:41:33.264Z" }, + { url = "https://files.pythonhosted.org/packages/0f/d6/77060dbd140c624e42ae3ece3df53b9d811000729a5c821b9fd671ceaac6/google_crc32c-1.7.1-cp312-cp312-win_amd64.whl", hash = "sha256:b7491bdc0c7564fcf48c0179d2048ab2f7c7ba36b84ccd3a3e1c3f7a72d3bba6", size = 33477, upload-time = "2025-03-26T14:29:10.94Z" }, + { 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" }, +] + +[[package]] +name = "google-pasta" +version = "0.2.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "six", marker = "sys_platform == 'linux'" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/35/4a/0bd53b36ff0323d10d5f24ebd67af2de10a1117f5cf4d7add90df92756f1/google-pasta-0.2.0.tar.gz", hash = "sha256:c9f2c8dfc8f96d0d5808299920721be30c9eec37f2389f28904f454565c8a16e", size = 40430, upload-time = "2020-03-13T18:57:50.34Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/a3/de/c648ef6835192e6e2cc03f40b19eeda4382c49b5bafb43d88b931c4c74ac/google_pasta-0.2.0-py3-none-any.whl", hash = "sha256:b32482794a366b5366a32c92a9a9201b107821889935a02b3e51f6b432ea84ed", size = 57471, upload-time = "2020-03-13T18:57:48.872Z" }, +] + +[[package]] +name = "google-resumable-media" +version = "2.7.2" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "google-crc32c", marker = "sys_platform == 'linux'" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/58/5a/0efdc02665dca14e0837b62c8a1a93132c264bd02054a15abb2218afe0ae/google_resumable_media-2.7.2.tar.gz", hash = "sha256:5280aed4629f2b60b847b0d42f9857fd4935c11af266744df33d8074cae92fe0", size = 2163099, upload-time = "2024-08-07T22:20:38.555Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/82/35/b8d3baf8c46695858cb9d8835a53baa1eeb9906ddaf2f728a5f5b640fd1e/google_resumable_media-2.7.2-py2.py3-none-any.whl", hash = "sha256:3ce7551e9fe6d99e9a126101d2536612bb73486721951e9562fee0f90c6ababa", size = 81251, upload-time = "2024-08-07T22:20:36.409Z" }, +] + +[[package]] +name = "googleapis-common-protos" +version = "1.70.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "protobuf", marker = "sys_platform == 'linux'" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/39/24/33db22342cf4a2ea27c9955e6713140fedd51e8b141b5ce5260897020f1a/googleapis_common_protos-1.70.0.tar.gz", hash = "sha256:0e1b44e0ea153e6594f9f394fef15193a68aaaea2d843f83e2742717ca753257", size = 145903, upload-time = "2025-04-14T10:17:02.924Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/86/f1/62a193f0227cf15a920390abe675f386dec35f7ae3ffe6da582d3ade42c7/googleapis_common_protos-1.70.0-py3-none-any.whl", hash = "sha256:b8bfcca8c25a2bb253e0e0b0adaf8c00773e5e6af6fd92397576680b807e0fd8", size = 294530, upload-time = "2025-04-14T10:17:01.271Z" }, +] + +[[package]] +name = "grpcio" +version = "1.73.1" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/79/e8/b43b851537da2e2f03fa8be1aef207e5cbfb1a2e014fbb6b40d24c177cd3/grpcio-1.73.1.tar.gz", hash = "sha256:7fce2cd1c0c1116cf3850564ebfc3264fba75d3c74a7414373f1238ea365ef87", size = 12730355, upload-time = "2025-06-26T01:53:24.622Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/e4/41/921565815e871d84043e73e2c0e748f0318dab6fa9be872cd042778f14a9/grpcio-1.73.1-cp311-cp311-linux_armv7l.whl", hash = "sha256:ba2cea9f7ae4bc21f42015f0ec98f69ae4179848ad744b210e7685112fa507a1", size = 5363853, upload-time = "2025-06-26T01:52:05.5Z" }, + { url = "https://files.pythonhosted.org/packages/b0/cc/9c51109c71d068e4d474becf5f5d43c9d63038cec1b74112978000fa72f4/grpcio-1.73.1-cp311-cp311-macosx_11_0_universal2.whl", hash = "sha256:d74c3f4f37b79e746271aa6cdb3a1d7e4432aea38735542b23adcabaaee0c097", size = 10621476, upload-time = "2025-06-26T01:52:07.211Z" }, + { url = "https://files.pythonhosted.org/packages/8f/d3/33d738a06f6dbd4943f4d377468f8299941a7c8c6ac8a385e4cef4dd3c93/grpcio-1.73.1-cp311-cp311-manylinux_2_17_aarch64.whl", hash = "sha256:5b9b1805a7d61c9e90541cbe8dfe0a593dfc8c5c3a43fe623701b6a01b01d710", size = 5807903, upload-time = "2025-06-26T01:52:09.466Z" }, + { url = "https://files.pythonhosted.org/packages/5d/47/36deacd3c967b74e0265f4c608983e897d8bb3254b920f8eafdf60e4ad7e/grpcio-1.73.1-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:b3215f69a0670a8cfa2ab53236d9e8026bfb7ead5d4baabe7d7dc11d30fda967", size = 6448172, upload-time = "2025-06-26T01:52:11.459Z" }, + { url = "https://files.pythonhosted.org/packages/0e/64/12d6dc446021684ee1428ea56a3f3712048a18beeadbdefa06e6f8814a6e/grpcio-1.73.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bc5eccfd9577a5dc7d5612b2ba90cca4ad14c6d949216c68585fdec9848befb1", size = 6044226, upload-time = "2025-06-26T01:52:12.987Z" }, + { url = "https://files.pythonhosted.org/packages/72/4b/6bae2d88a006000f1152d2c9c10ffd41d0131ca1198e0b661101c2e30ab9/grpcio-1.73.1-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:dc7d7fd520614fce2e6455ba89791458020a39716951c7c07694f9dbae28e9c0", size = 6135690, upload-time = "2025-06-26T01:52:14.92Z" }, + { url = "https://files.pythonhosted.org/packages/38/64/02c83b5076510784d1305025e93e0d78f53bb6a0213c8c84cfe8a00c5c48/grpcio-1.73.1-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:105492124828911f85127e4825d1c1234b032cb9d238567876b5515d01151379", size = 6775867, upload-time = "2025-06-26T01:52:16.446Z" }, + { url = "https://files.pythonhosted.org/packages/42/72/a13ff7ba6c68ccffa35dacdc06373a76c0008fd75777cba84d7491956620/grpcio-1.73.1-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:610e19b04f452ba6f402ac9aa94eb3d21fbc94553368008af634812c4a85a99e", size = 6308380, upload-time = "2025-06-26T01:52:18.417Z" }, + { url = "https://files.pythonhosted.org/packages/65/ae/d29d948021faa0070ec33245c1ae354e2aefabd97e6a9a7b6dcf0fb8ef6b/grpcio-1.73.1-cp311-cp311-win32.whl", hash = "sha256:d60588ab6ba0ac753761ee0e5b30a29398306401bfbceffe7d68ebb21193f9d4", size = 3679139, upload-time = "2025-06-26T01:52:20.171Z" }, + { url = "https://files.pythonhosted.org/packages/af/66/e1bbb0c95ea222947f0829b3db7692c59b59bcc531df84442e413fa983d9/grpcio-1.73.1-cp311-cp311-win_amd64.whl", hash = "sha256:6957025a4608bb0a5ff42abd75bfbb2ed99eda29d5992ef31d691ab54b753643", size = 4342558, upload-time = "2025-06-26T01:52:22.137Z" }, + { url = "https://files.pythonhosted.org/packages/b8/41/456caf570c55d5ac26f4c1f2db1f2ac1467d5bf3bcd660cba3e0a25b195f/grpcio-1.73.1-cp312-cp312-linux_armv7l.whl", hash = "sha256:921b25618b084e75d424a9f8e6403bfeb7abef074bb6c3174701e0f2542debcf", size = 5334621, upload-time = "2025-06-26T01:52:23.602Z" }, + { url = "https://files.pythonhosted.org/packages/2a/c2/9a15e179e49f235bb5e63b01590658c03747a43c9775e20c4e13ca04f4c4/grpcio-1.73.1-cp312-cp312-macosx_11_0_universal2.whl", hash = "sha256:277b426a0ed341e8447fbf6c1d6b68c952adddf585ea4685aa563de0f03df887", size = 10601131, upload-time = "2025-06-26T01:52:25.691Z" }, + { url = "https://files.pythonhosted.org/packages/0c/1d/1d39e90ef6348a0964caa7c5c4d05f3bae2c51ab429eb7d2e21198ac9b6d/grpcio-1.73.1-cp312-cp312-manylinux_2_17_aarch64.whl", hash = "sha256:96c112333309493c10e118d92f04594f9055774757f5d101b39f8150f8c25582", size = 5759268, upload-time = "2025-06-26T01:52:27.631Z" }, + { url = "https://files.pythonhosted.org/packages/8a/2b/2dfe9ae43de75616177bc576df4c36d6401e0959833b2e5b2d58d50c1f6b/grpcio-1.73.1-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:f48e862aed925ae987eb7084409a80985de75243389dc9d9c271dd711e589918", size = 6409791, upload-time = "2025-06-26T01:52:29.711Z" }, + { url = "https://files.pythonhosted.org/packages/6e/66/e8fe779b23b5a26d1b6949e5c70bc0a5fd08f61a6ec5ac7760d589229511/grpcio-1.73.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:83a6c2cce218e28f5040429835fa34a29319071079e3169f9543c3fbeff166d2", size = 6003728, upload-time = "2025-06-26T01:52:31.352Z" }, + { url = "https://files.pythonhosted.org/packages/a9/39/57a18fcef567784108c4fc3f5441cb9938ae5a51378505aafe81e8e15ecc/grpcio-1.73.1-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:65b0458a10b100d815a8426b1442bd17001fdb77ea13665b2f7dc9e8587fdc6b", size = 6103364, upload-time = "2025-06-26T01:52:33.028Z" }, + { url = "https://files.pythonhosted.org/packages/c5/46/28919d2aa038712fc399d02fa83e998abd8c1f46c2680c5689deca06d1b2/grpcio-1.73.1-cp312-cp312-musllinux_1_1_i686.whl", hash = "sha256:0a9f3ea8dce9eae9d7cb36827200133a72b37a63896e0e61a9d5ec7d61a59ab1", size = 6749194, upload-time = "2025-06-26T01:52:34.734Z" }, + { url = "https://files.pythonhosted.org/packages/3d/56/3898526f1fad588c5d19a29ea0a3a4996fb4fa7d7c02dc1be0c9fd188b62/grpcio-1.73.1-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:de18769aea47f18e782bf6819a37c1c528914bfd5683b8782b9da356506190c8", size = 6283902, upload-time = "2025-06-26T01:52:36.503Z" }, + { url = "https://files.pythonhosted.org/packages/dc/64/18b77b89c5870d8ea91818feb0c3ffb5b31b48d1b0ee3e0f0d539730fea3/grpcio-1.73.1-cp312-cp312-win32.whl", hash = "sha256:24e06a5319e33041e322d32c62b1e728f18ab8c9dbc91729a3d9f9e3ed336642", size = 3668687, upload-time = "2025-06-26T01:52:38.678Z" }, + { url = "https://files.pythonhosted.org/packages/3c/52/302448ca6e52f2a77166b2e2ed75f5d08feca4f2145faf75cb768cccb25b/grpcio-1.73.1-cp312-cp312-win_amd64.whl", hash = "sha256:303c8135d8ab176f8038c14cc10d698ae1db9c480f2b2823f7a987aa2a4c5646", size = 4334887, upload-time = "2025-06-26T01:52:40.743Z" }, +] + +[[package]] +name = "h11" +version = "0.16.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/01/ee/02a2c011bdab74c6fb3c75474d40b3052059d95df7e73351460c8588d963/h11-0.16.0.tar.gz", hash = "sha256:4e35b956cf45792e4caa5885e69fba00bdbc6ffafbfa020300e549b208ee5ff1", size = 101250, upload-time = "2025-04-24T03:35:25.427Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/04/4b/29cac41a4d98d144bf5f6d33995617b185d14b22401f75ca86f384e87ff1/h11-0.16.0-py3-none-any.whl", hash = "sha256:63cf8bbe7522de3bf65932fda1d9c2772064ffb3dae62d55932da54b31cb6c86", size = 37515, upload-time = "2025-04-24T03:35:24.344Z" }, +] + +[[package]] +name = "h5py" +version = "3.14.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "numpy", version = "1.24.4", source = { registry = "https://pypi.org/simple" }, marker = "(sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-trustyai') or (sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai')" }, + { name = "numpy", version = "1.26.4", source = { registry = "https://pypi.org/simple" }, marker = "(sys_platform == 'linux' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (sys_platform == 'linux' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (sys_platform == 'linux' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-trustyai') or (sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai')" }, + { name = "numpy", version = "2.2.6", source = { registry = "https://pypi.org/simple" }, marker = "(sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-trustyai') or (sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai')" }, +] +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/61/1b/ad24a8ce846cf0519695c10491e99969d9d203b9632c4fcd5004b1641c2e/h5py-3.14.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:f30dbc58f2a0efeec6c8836c97f6c94afd769023f44e2bb0ed7b17a16ec46088", size = 3352382, upload-time = "2025-06-06T14:04:37.95Z" }, + { url = "https://files.pythonhosted.org/packages/36/5b/a066e459ca48b47cc73a5c668e9924d9619da9e3c500d9fb9c29c03858ec/h5py-3.14.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:543877d7f3d8f8a9828ed5df6a0b78ca3d8846244b9702e99ed0d53610b583a8", size = 2852492, upload-time = "2025-06-06T14:04:42.092Z" }, + { url = "https://files.pythonhosted.org/packages/08/0c/5e6aaf221557314bc15ba0e0da92e40b24af97ab162076c8ae009320a42b/h5py-3.14.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8c497600c0496548810047257e36360ff551df8b59156d3a4181072eed47d8ad", size = 4298002, upload-time = "2025-06-06T14:04:47.106Z" }, + { url = "https://files.pythonhosted.org/packages/21/d4/d461649cafd5137088fb7f8e78fdc6621bb0c4ff2c090a389f68e8edc136/h5py-3.14.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:723a40ee6505bd354bfd26385f2dae7bbfa87655f4e61bab175a49d72ebfc06b", size = 4516618, upload-time = "2025-06-06T14:04:52.467Z" }, + { url = "https://files.pythonhosted.org/packages/db/0c/6c3f879a0f8e891625817637fad902da6e764e36919ed091dc77529004ac/h5py-3.14.0-cp311-cp311-win_amd64.whl", hash = "sha256:d2744b520440a996f2dae97f901caa8a953afc055db4673a993f2d87d7f38713", size = 2874888, upload-time = "2025-06-06T14:04:56.95Z" }, + { url = "https://files.pythonhosted.org/packages/3e/77/8f651053c1843391e38a189ccf50df7e261ef8cd8bfd8baba0cbe694f7c3/h5py-3.14.0-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:e0045115d83272090b0717c555a31398c2c089b87d212ceba800d3dc5d952e23", size = 3312740, upload-time = "2025-06-06T14:05:01.193Z" }, + { url = "https://files.pythonhosted.org/packages/ff/10/20436a6cf419b31124e59fefc78d74cb061ccb22213226a583928a65d715/h5py-3.14.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:6da62509b7e1d71a7d110478aa25d245dd32c8d9a1daee9d2a42dba8717b047a", size = 2829207, upload-time = "2025-06-06T14:05:05.061Z" }, + { url = "https://files.pythonhosted.org/packages/3f/19/c8bfe8543bfdd7ccfafd46d8cfd96fce53d6c33e9c7921f375530ee1d39a/h5py-3.14.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:554ef0ced3571366d4d383427c00c966c360e178b5fb5ee5bb31a435c424db0c", size = 4708455, upload-time = "2025-06-06T14:05:11.528Z" }, + { url = "https://files.pythonhosted.org/packages/86/f9/f00de11c82c88bfc1ef22633557bfba9e271e0cb3189ad704183fc4a2644/h5py-3.14.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:0cbd41f4e3761f150aa5b662df991868ca533872c95467216f2bec5fcad84882", size = 4929422, upload-time = "2025-06-06T14:05:18.399Z" }, + { url = "https://files.pythonhosted.org/packages/7a/6d/6426d5d456f593c94b96fa942a9b3988ce4d65ebaf57d7273e452a7222e8/h5py-3.14.0-cp312-cp312-win_amd64.whl", hash = "sha256:bf4897d67e613ecf5bdfbdab39a1158a64df105827da70ea1d90243d796d367f", size = 2862845, upload-time = "2025-06-06T14:05:23.699Z" }, +] + +[[package]] +name = "hf-xet" +version = "1.1.5" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/ed/d4/7685999e85945ed0d7f0762b686ae7015035390de1161dcea9d5276c134c/hf_xet-1.1.5.tar.gz", hash = "sha256:69ebbcfd9ec44fdc2af73441619eeb06b94ee34511bbcf57cd423820090f5694", size = 495969, upload-time = "2025-06-20T21:48:38.007Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/00/89/a1119eebe2836cb25758e7661d6410d3eae982e2b5e974bcc4d250be9012/hf_xet-1.1.5-cp37-abi3-macosx_10_12_x86_64.whl", hash = "sha256:f52c2fa3635b8c37c7764d8796dfa72706cc4eded19d638331161e82b0792e23", size = 2687929, upload-time = "2025-06-20T21:48:32.284Z" }, + { url = "https://files.pythonhosted.org/packages/de/5f/2c78e28f309396e71ec8e4e9304a6483dcbc36172b5cea8f291994163425/hf_xet-1.1.5-cp37-abi3-macosx_11_0_arm64.whl", hash = "sha256:9fa6e3ee5d61912c4a113e0708eaaef987047616465ac7aa30f7121a48fc1af8", size = 2556338, upload-time = "2025-06-20T21:48:30.079Z" }, + { url = "https://files.pythonhosted.org/packages/6d/2f/6cad7b5fe86b7652579346cb7f85156c11761df26435651cbba89376cd2c/hf_xet-1.1.5-cp37-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:fc874b5c843e642f45fd85cda1ce599e123308ad2901ead23d3510a47ff506d1", size = 3102894, upload-time = "2025-06-20T21:48:28.114Z" }, + { url = "https://files.pythonhosted.org/packages/d0/54/0fcf2b619720a26fbb6cc941e89f2472a522cd963a776c089b189559447f/hf_xet-1.1.5-cp37-abi3-manylinux_2_28_aarch64.whl", hash = "sha256:dbba1660e5d810bd0ea77c511a99e9242d920790d0e63c0e4673ed36c4022d18", size = 3002134, upload-time = "2025-06-20T21:48:25.906Z" }, + { url = "https://files.pythonhosted.org/packages/f3/92/1d351ac6cef7c4ba8c85744d37ffbfac2d53d0a6c04d2cabeba614640a78/hf_xet-1.1.5-cp37-abi3-musllinux_1_2_aarch64.whl", hash = "sha256:ab34c4c3104133c495785d5d8bba3b1efc99de52c02e759cf711a91fd39d3a14", size = 3171009, upload-time = "2025-06-20T21:48:33.987Z" }, + { url = "https://files.pythonhosted.org/packages/c9/65/4b2ddb0e3e983f2508528eb4501288ae2f84963586fbdfae596836d5e57a/hf_xet-1.1.5-cp37-abi3-musllinux_1_2_x86_64.whl", hash = "sha256:83088ecea236d5113de478acb2339f92c95b4fb0462acaa30621fac02f5a534a", size = 3279245, upload-time = "2025-06-20T21:48:36.051Z" }, + { url = "https://files.pythonhosted.org/packages/f0/55/ef77a85ee443ae05a9e9cba1c9f0dd9241eb42da2aeba1dc50f51154c81a/hf_xet-1.1.5-cp37-abi3-win_amd64.whl", hash = "sha256:73e167d9807d166596b4b2f0b585c6d5bd84a26dea32843665a8b58f6edba245", size = 2738931, upload-time = "2025-06-20T21:48:39.482Z" }, +] + +[[package]] +name = "httpcore" +version = "1.0.9" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "certifi", marker = "sys_platform == 'linux'" }, + { name = "h11", marker = "sys_platform == 'linux'" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/06/94/82699a10bca87a5556c9c59b5963f2d039dbd239f25bc2a63907a05a14cb/httpcore-1.0.9.tar.gz", hash = "sha256:6e34463af53fd2ab5d807f399a9b45ea31c3dfa2276f15a2c3f00afff6e176e8", size = 85484, upload-time = "2025-04-24T22:06:22.219Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/7e/f5/f66802a942d491edb555dd61e3a9961140fd64c90bce1eafd741609d334d/httpcore-1.0.9-py3-none-any.whl", hash = "sha256:2d400746a40668fc9dec9810239072b40b4484b640a8c38fd654a024c7a1bf55", size = 78784, upload-time = "2025-04-24T22:06:20.566Z" }, +] + +[[package]] +name = "httpx" +version = "0.28.1" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "anyio", marker = "sys_platform == 'linux'" }, + { name = "certifi", marker = "sys_platform == 'linux'" }, + { name = "httpcore", marker = "sys_platform == 'linux'" }, + { name = "idna", marker = "sys_platform == 'linux'" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/b1/df/48c586a5fe32a0f01324ee087459e112ebb7224f646c0b5023f5e79e9956/httpx-0.28.1.tar.gz", hash = "sha256:75e98c5f16b0f35b567856f597f06ff2270a374470a5c2392242528e3e3e42fc", size = 141406, upload-time = "2024-12-06T15:37:23.222Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/2a/39/e50c7c3a983047577ee07d2a9e53faf5a69493943ec3f6a384bdc792deb2/httpx-0.28.1-py3-none-any.whl", hash = "sha256:d909fcccc110f8c7faf814ca82a9a4d816bc5a6dbfea25d6591d6985b8ba59ad", size = 73517, upload-time = "2024-12-06T15:37:21.509Z" }, +] + +[[package]] +name = "huggingface-hub" +version = "0.33.1" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "filelock", marker = "sys_platform == 'linux'" }, + { name = "fsspec", marker = "sys_platform == 'linux'" }, + { name = "hf-xet", marker = "(platform_machine == 'aarch64' and sys_platform == 'linux') or (platform_machine == 'amd64' and sys_platform == 'linux') or (platform_machine == 'arm64' and sys_platform == 'linux') or (platform_machine == 'x86_64' and sys_platform == 'linux')" }, + { name = "packaging", marker = "sys_platform == 'linux'" }, + { name = "pyyaml", marker = "sys_platform == 'linux'" }, + { name = "requests", marker = "sys_platform == 'linux'" }, + { name = "tqdm", marker = "sys_platform == 'linux'" }, + { name = "typing-extensions", marker = "sys_platform == 'linux'" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/a4/01/bfe0534a63ce7a2285e90dbb33e8a5b815ff096d8f7743b135c256916589/huggingface_hub-0.33.1.tar.gz", hash = "sha256:589b634f979da3ea4b8bdb3d79f97f547840dc83715918daf0b64209c0844c7b", size = 426728, upload-time = "2025-06-25T12:02:57.605Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/d0/fb/5307bd3612eb0f0e62c3a916ae531d3a31e58fb5c82b58e3ebf7fd6f47a1/huggingface_hub-0.33.1-py3-none-any.whl", hash = "sha256:ec8d7444628210c0ba27e968e3c4c973032d44dcea59ca0d78ef3f612196f095", size = 515377, upload-time = "2025-06-25T12:02:55.611Z" }, +] + +[[package]] +name = "identify" +version = "2.6.9" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/9b/98/a71ab060daec766acc30fb47dfca219d03de34a70d616a79a38c6066c5bf/identify-2.6.9.tar.gz", hash = "sha256:d40dfe3142a1421d8518e3d3985ef5ac42890683e32306ad614a29490abeb6bf", size = 99249, upload-time = "2025-03-08T15:54:13.632Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/07/ce/0845144ed1f0e25db5e7a79c2354c1da4b5ce392b8966449d5db8dca18f1/identify-2.6.9-py2.py3-none-any.whl", hash = "sha256:c98b4322da415a8e5a70ff6e51fbc2d2932c015532d77e9f8537b4ba7813b150", size = 99101, upload-time = "2025-03-08T15:54:12.026Z" }, +] + +[[package]] +name = "idna" +version = "3.10" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/f1/70/7703c29685631f5a7590aa73f1f1d3fa9a380e654b86af429e0934a32f7d/idna-3.10.tar.gz", hash = "sha256:12f65c9b470abda6dc35cf8e63cc574b1c52b11df2c86030af0ac09b01b13ea9", size = 190490, upload-time = "2024-09-15T18:07:39.745Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/76/c6/c88e154df9c4e1a2a66ccf0005a88dfb2650c1dffb6f5ce603dfbd452ce3/idna-3.10-py3-none-any.whl", hash = "sha256:946d195a0d259cbba61165e88e65941f16e9b36ea6ddb97f00452bae8b1287d3", size = 70442, upload-time = "2024-09-15T18:07:37.964Z" }, +] + +[[package]] +name = "importlib-metadata" +version = "8.7.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "zipp", marker = "sys_platform == 'linux'" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/76/66/650a33bd90f786193e4de4b3ad86ea60b53c89b669a5c7be931fac31cdb0/importlib_metadata-8.7.0.tar.gz", hash = "sha256:d13b81ad223b890aa16c5471f2ac3056cf76c5f10f82d6f9292f0b415f389000", size = 56641, upload-time = "2025-04-27T15:29:01.736Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/20/b0/36bd937216ec521246249be3bf9855081de4c5e06a0c9b4219dbeda50373/importlib_metadata-8.7.0-py3-none-any.whl", hash = "sha256:e5dd1551894c77868a30651cef00984d50e1002d06942a7101d34870c5f02afd", size = 27656, upload-time = "2025-04-27T15:29:00.214Z" }, +] + +[[package]] +name = "iniconfig" +version = "2.0.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/d7/4b/cbd8e699e64a6f16ca3a8220661b5f83792b3017d0f79807cb8708d33913/iniconfig-2.0.0.tar.gz", hash = "sha256:2d91e135bf72d31a410b17c16da610a82cb55f6b0477d1a902134b24a455b8b3", size = 4646, upload-time = "2023-01-07T11:08:11.254Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/ef/a6/62565a6e1cf69e10f5727360368e451d4b7f58beeac6173dc9db836a5b46/iniconfig-2.0.0-py3-none-any.whl", hash = "sha256:b6a85871a79d2e3b22d2d1b94ac2824226a63c6b741c88f7ae975f18b6778374", size = 5892, upload-time = "2023-01-07T11:08:09.864Z" }, +] + +[[package]] +name = "ipdb" +version = "0.13.13" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "decorator", marker = "sys_platform == 'linux' or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai')" }, + { name = "ipython", marker = "sys_platform == 'linux' or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai')" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/3d/1b/7e07e7b752017f7693a0f4d41c13e5ca29ce8cbcfdcc1fd6c4ad8c0a27a0/ipdb-0.13.13.tar.gz", hash = "sha256:e3ac6018ef05126d442af680aad863006ec19d02290561ac88b8b1c0b0cfc726", size = 17042, upload-time = "2023-03-09T15:40:57.487Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/0c/4c/b075da0092003d9a55cf2ecc1cae9384a1ca4f650d51b00fc59875fe76f6/ipdb-0.13.13-py3-none-any.whl", hash = "sha256:45529994741c4ab6d2388bfa5d7b725c2cf7fe9deffabdb8a6113aa5ed449ed4", size = 12130, upload-time = "2023-03-09T15:40:55.021Z" }, +] + +[[package]] +name = "ipykernel" +version = "6.29.5" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "comm", marker = "sys_platform == 'linux'" }, + { name = "debugpy", marker = "sys_platform == 'linux'" }, + { name = "ipython", marker = "sys_platform == 'linux'" }, + { name = "jupyter-client", marker = "sys_platform == 'linux'" }, + { name = "jupyter-core", marker = "sys_platform == 'linux'" }, + { name = "matplotlib-inline", marker = "sys_platform == 'linux'" }, + { name = "nest-asyncio", marker = "sys_platform == 'linux'" }, + { name = "packaging", marker = "sys_platform == 'linux'" }, + { name = "psutil", marker = "sys_platform == 'linux'" }, + { name = "pyzmq", marker = "sys_platform == 'linux'" }, + { name = "tornado", marker = "sys_platform == 'linux'" }, + { name = "traitlets", marker = "sys_platform == 'linux'" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/e9/5c/67594cb0c7055dc50814b21731c22a601101ea3b1b50a9a1b090e11f5d0f/ipykernel-6.29.5.tar.gz", hash = "sha256:f093a22c4a40f8828f8e330a9c297cb93dcab13bd9678ded6de8e5cf81c56215", size = 163367, upload-time = "2024-07-01T14:07:22.543Z" } +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.32.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "decorator", marker = "sys_platform == 'linux'" }, + { name = "jedi", marker = "sys_platform == 'linux'" }, + { name = "matplotlib-inline", marker = "sys_platform == 'linux'" }, + { name = "pexpect", marker = "sys_platform == 'linux'" }, + { name = "prompt-toolkit", marker = "sys_platform == 'linux'" }, + { name = "pygments", marker = "sys_platform == 'linux'" }, + { name = "stack-data", marker = "sys_platform == 'linux'" }, + { name = "traitlets", marker = "sys_platform == 'linux'" }, + { name = "typing-extensions", marker = "python_full_version < '3.12' and sys_platform == 'linux'" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/36/80/4d2a072e0db7d250f134bc11676517299264ebe16d62a8619d49a78ced73/ipython-8.32.0.tar.gz", hash = "sha256:be2c91895b0b9ea7ba49d33b23e2040c352b33eb6a519cca7ce6e0c743444251", size = 5507441, upload-time = "2025-01-31T14:04:45.197Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/e7/e1/f4474a7ecdb7745a820f6f6039dc43c66add40f1bcc66485607d93571af6/ipython-8.32.0-py3-none-any.whl", hash = "sha256:cae85b0c61eff1fc48b0a8002de5958b6528fa9c8defb1894da63f42613708aa", size = 825524, upload-time = "2025-01-31T14:04:41.675Z" }, +] + +[[package]] +name = "ipywidgets" +version = "8.1.2" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "comm", marker = "sys_platform == 'linux'" }, + { name = "ipython", marker = "sys_platform == 'linux'" }, + { name = "jupyterlab-widgets", marker = "sys_platform == 'linux'" }, + { name = "traitlets", marker = "sys_platform == 'linux'" }, + { name = "widgetsnbextension", marker = "sys_platform == 'linux'" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/bd/c6/2a746b6a339c17d81fa40f17f74d13d732ffdc3cca65340ecfdf1eee675c/ipywidgets-8.1.2.tar.gz", hash = "sha256:d0b9b41e49bae926a866e613a39b0f0097745d2b9f1f3dd406641b4a57ec42c9", size = 116492, upload-time = "2024-02-08T15:31:29.801Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/70/1a/7edeedb1c089d63ccd8bd5c0612334774e90cf9337de9fe6c82d90081791/ipywidgets-8.1.2-py3-none-any.whl", hash = "sha256:bbe43850d79fb5e906b14801d6c01402857996864d1e5b6fa62dd2ee35559f60", size = 139411, upload-time = "2024-02-08T15:31:21.503Z" }, +] + +[[package]] +name = "isoduration" +version = "20.11.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "arrow", marker = "sys_platform == 'linux'" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/7c/1a/3c8edc664e06e6bd06cce40c6b22da5f1429aa4224d0c590f3be21c91ead/isoduration-20.11.0.tar.gz", hash = "sha256:ac2f9015137935279eac671f94f89eb00584f940f5dc49462a0c4ee692ba1bd9", size = 11649, upload-time = "2020-11-01T11:00:00.312Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/7b/55/e5326141505c5d5e34c5e0935d2908a74e4561eca44108fbfb9c13d2911a/isoduration-20.11.0-py3-none-any.whl", hash = "sha256:b2904c2a4228c3d44f409c8ae8e2370eb21a26f7ac2ec5446df141dde3452042", size = 11321, upload-time = "2020-11-01T10:59:58.02Z" }, +] + +[[package]] +name = "isort" +version = "6.0.1" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/b8/21/1e2a441f74a653a144224d7d21afe8f4169e6c7c20bb13aec3a2dc3815e0/isort-6.0.1.tar.gz", hash = "sha256:1cb5df28dfbc742e490c5e41bad6da41b805b0a8be7bc93cd0fb2a8a890ac450", size = 821955, upload-time = "2025-02-26T21:13:16.955Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/c1/11/114d0a5f4dabbdcedc1125dee0888514c3c3b16d3e9facad87ed96fad97c/isort-6.0.1-py3-none-any.whl", hash = "sha256:2dc5d7f65c9678d94c88dfc29161a320eec67328bc97aad576874cb4be1e9615", size = 94186, upload-time = "2025-02-26T21:13:14.911Z" }, +] + +[[package]] +name = "jedi" +version = "0.19.2" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "parso", marker = "sys_platform == 'linux'" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/72/3a/79a912fbd4d8dd6fbb02bf69afd3bb72cf0c729bb3063c6f4498603db17a/jedi-0.19.2.tar.gz", hash = "sha256:4770dc3de41bde3966b02eb84fbcf557fb33cce26ad23da12c742fb50ecb11f0", size = 1231287, upload-time = "2024-11-11T01:41:42.873Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/c0/5a/9cac0c82afec3d09ccd97c8b6502d48f165f9124db81b4bcb90b4af974ee/jedi-0.19.2-py2.py3-none-any.whl", hash = "sha256:a8ef22bde8490f57fe5c7681a3c83cb58874daf72b4784de3cce5b6ef6edb5b9", size = 1572278, upload-time = "2024-11-11T01:41:40.175Z" }, +] + +[[package]] +name = "jinja2" +version = "3.1.5" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "markupsafe", marker = "sys_platform == 'linux'" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/af/92/b3130cbbf5591acf9ade8708c365f3238046ac7cb8ccba6e81abccb0ccff/jinja2-3.1.5.tar.gz", hash = "sha256:8fefff8dc3034e27bb80d67c671eb8a9bc424c0ef4c0826edbff304cceff43bb", size = 244674, upload-time = "2024-12-21T18:30:22.828Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/bd/0f/2ba5fbcd631e3e88689309dbe978c5769e883e4b84ebfe7da30b43275c5a/jinja2-3.1.5-py3-none-any.whl", hash = "sha256:aba0f4dc9ed8013c424088f68a5c226f7d6097ed89b246d7749c2ec4175c6adb", size = 134596, upload-time = "2024-12-21T18:30:19.133Z" }, +] + +[[package]] +name = "jmespath" +version = "1.0.1" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/00/2a/e867e8531cf3e36b41201936b7fa7ba7b5702dbef42922193f05c8976cd6/jmespath-1.0.1.tar.gz", hash = "sha256:90261b206d6defd58fdd5e85f478bf633a2901798906be2ad389150c5c60edbe", size = 25843, upload-time = "2022-06-17T18:00:12.224Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/31/b4/b9b800c45527aadd64d5b442f9b932b00648617eb5d63d2c7a6587b7cafc/jmespath-1.0.1-py3-none-any.whl", hash = "sha256:02e2e4cc71b5bcab88332eebf907519190dd9e6e82107fa7f83b1003a6252980", size = 20256, upload-time = "2022-06-17T18:00:10.251Z" }, +] + +[[package]] +name = "joblib" +version = "1.5.1" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/dc/fe/0f5a938c54105553436dbff7a61dc4fed4b1b2c98852f8833beaf4d5968f/joblib-1.5.1.tar.gz", hash = "sha256:f4f86e351f39fe3d0d32a9f2c3d8af1ee4cec285aafcb27003dda5205576b444", size = 330475, upload-time = "2025-05-23T12:04:37.097Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/7d/4f/1195bbac8e0c2acc5f740661631d8d750dc38d4a32b23ee5df3cde6f4e0d/joblib-1.5.1-py3-none-any.whl", hash = "sha256:4719a31f054c7d766948dcd83e9613686b27114f190f717cec7eaa2084f8a74a", size = 307746, upload-time = "2025-05-23T12:04:35.124Z" }, +] + +[[package]] +name = "jpype1" +version = "1.5.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "packaging", marker = "sys_platform == 'linux'" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/25/42/8ca50a0e27e3053829545829e7bcba071cbfa4d5d8fd7fc5d1d988f325b1/JPype1-1.5.0.tar.gz", hash = "sha256:425a6e1966afdd5848b60c2688bcaeb7e40ba504a686f1114589668e0631e878", size = 819110, upload-time = "2023-12-26T12:47:49.201Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/98/37/0049866cbfecb879b46d8e9f9b70944624ab17152a282ad5cf60909054ec/JPype1-1.5.0-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:85a31b30b482eaf788b21af421e0750aa0be7758307314178143a76632b0ad04", size = 587358, upload-time = "2023-12-26T09:12:12.192Z" }, + { url = "https://files.pythonhosted.org/packages/2a/b3/701ce7bfbdf2caa05e128c44e634b61571e5b67109f3a4ff23ce6b72e856/JPype1-1.5.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:20f0229d7aaa04c480a7fa271cbd161ded58cecd838ba52a4e01bea21b60a058", size = 504143, upload-time = "2023-12-26T09:12:15.573Z" }, + { url = "https://files.pythonhosted.org/packages/17/1e/7728ae8fb41e8fbf3a7309f8936d07b0b1622f2860733df0e7ec30b1ce76/JPype1-1.5.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:5ef976e0f3b2e9604469f449f30bb2031941a159a0637f4c16adb2c5076f3e81", size = 488646, upload-time = "2023-12-26T09:12:18.755Z" }, + { url = "https://files.pythonhosted.org/packages/1f/19/144f3a767b563ba5c6d4aa534ea1f3fad9a5067c3917df4458a6e1afe0ef/JPype1-1.5.0-cp311-cp311-win_amd64.whl", hash = "sha256:2bc987205ff8d2d8e36dfbef05430e0638e85d4fee1166ba58ebfa6f7a67cdf8", size = 351542, upload-time = "2023-12-26T09:12:21.719Z" }, + { url = "https://files.pythonhosted.org/packages/30/0d/9ac6f0e59427fc5ebf4547c2fdbb38e347b46c2dc20b430490236d037ed8/JPype1-1.5.0-cp312-cp312-macosx_10_9_universal2.whl", hash = "sha256:8714bfaf09d6877160bc7ac97812016ccb09f6d7ba5ea2a9f519178aefcca93f", size = 587919, upload-time = "2023-12-26T09:12:24.51Z" }, + { url = "https://files.pythonhosted.org/packages/b2/d0/87438127e3d33dee9fb699192ac301065653f2846bff80f58bb2da788946/JPype1-1.5.0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:1696196a8b6ea2f8ad3280249014406de919088494b94a84581da01752d98dca", size = 504871, upload-time = "2023-12-26T09:12:27.954Z" }, + { url = "https://files.pythonhosted.org/packages/7d/ed/549766039d17550da6e3fa59ed776a021b400324d7766358d3b6e33d8b28/JPype1-1.5.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8649b526eccb4047881ad60bdb1974eb71a09cdb7f8bda17c96fdc0f9a3f2d1e", size = 488937, upload-time = "2023-12-26T09:12:31.045Z" }, + { url = "https://files.pythonhosted.org/packages/20/47/9606af72e21703e5fca5e29e5bd5e345506977b6ba492c549648adef47ef/JPype1-1.5.0-cp312-cp312-win_amd64.whl", hash = "sha256:9aafc00b00bf8c1b624081e5d4ab87f7752e6c7ee6a141cfc332250b05c6d42f", size = 352208, upload-time = "2023-12-26T09:12:34.207Z" }, +] + +[[package]] +name = "json5" +version = "0.12.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/12/be/c6c745ec4c4539b25a278b70e29793f10382947df0d9efba2fa09120895d/json5-0.12.0.tar.gz", hash = "sha256:0b4b6ff56801a1c7dc817b0241bca4ce474a0e6a163bfef3fc594d3fd263ff3a", size = 51907, upload-time = "2025-04-03T16:33:13.201Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/41/9f/3500910d5a98549e3098807493851eeef2b89cdd3032227558a104dfe926/json5-0.12.0-py3-none-any.whl", hash = "sha256:6d37aa6c08b0609f16e1ec5ff94697e2cbbfbad5ac112afa05794da9ab7810db", size = 36079, upload-time = "2025-04-03T16:33:11.927Z" }, +] + +[[package]] +name = "jsonpointer" +version = "3.0.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/6a/0a/eebeb1fa92507ea94016a2a790b93c2ae41a7e18778f85471dc54475ed25/jsonpointer-3.0.0.tar.gz", hash = "sha256:2b2d729f2091522d61c3b31f82e11870f60b68f43fbc705cb76bf4b832af59ef", size = 9114, upload-time = "2024-06-10T19:24:42.462Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/71/92/5e77f98553e9e75130c78900d000368476aed74276eb8ae8796f65f00918/jsonpointer-3.0.0-py2.py3-none-any.whl", hash = "sha256:13e088adc14fca8b6aa8177c044e12701e6ad4b28ff10e65f2267a90109c9942", size = 7595, upload-time = "2024-06-10T19:24:40.698Z" }, +] + +[[package]] +name = "jsonschema" +version = "4.24.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "attrs", marker = "sys_platform == 'linux'" }, + { name = "jsonschema-specifications", marker = "sys_platform == 'linux'" }, + { name = "referencing", marker = "sys_platform == 'linux'" }, + { name = "rpds-py", marker = "sys_platform == 'linux'" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/bf/d3/1cf5326b923a53515d8f3a2cd442e6d7e94fcc444716e879ea70a0ce3177/jsonschema-4.24.0.tar.gz", hash = "sha256:0b4e8069eb12aedfa881333004bccaec24ecef5a8a6a4b6df142b2cc9599d196", size = 353480, upload-time = "2025-05-26T18:48:10.459Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/a2/3d/023389198f69c722d039351050738d6755376c8fd343e91dc493ea485905/jsonschema-4.24.0-py3-none-any.whl", hash = "sha256:a462455f19f5faf404a7902952b6f0e3ce868f3ee09a359b05eca6673bd8412d", size = 88709, upload-time = "2025-05-26T18:48:08.417Z" }, +] + +[package.optional-dependencies] +format-nongpl = [ + { name = "fqdn", marker = "sys_platform == 'linux'" }, + { name = "idna", marker = "sys_platform == 'linux'" }, + { name = "isoduration", marker = "sys_platform == 'linux'" }, + { name = "jsonpointer", marker = "sys_platform == 'linux'" }, + { name = "rfc3339-validator", marker = "sys_platform == 'linux'" }, + { name = "rfc3986-validator", marker = "sys_platform == 'linux'" }, + { name = "uri-template", marker = "sys_platform == 'linux'" }, + { name = "webcolors", marker = "sys_platform == 'linux'" }, +] + +[[package]] +name = "jsonschema-specifications" +version = "2025.4.1" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "referencing", marker = "sys_platform == 'linux'" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/bf/ce/46fbd9c8119cfc3581ee5643ea49464d168028cfb5caff5fc0596d0cf914/jsonschema_specifications-2025.4.1.tar.gz", hash = "sha256:630159c9f4dbea161a6a2205c3011cc4f18ff381b189fff48bb39b9bf26ae608", size = 15513, upload-time = "2025-04-23T12:34:07.418Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/01/0e/b27cdbaccf30b890c40ed1da9fd4a3593a5cf94dae54fb34f8a4b74fcd3f/jsonschema_specifications-2025.4.1-py3-none-any.whl", hash = "sha256:4653bffbd6584f7de83a67e0d620ef16900b390ddc7939d56684d6c81e33f1af", size = 18437, upload-time = "2025-04-23T12:34:05.422Z" }, +] + +[[package]] +name = "jupyter-bokeh" +version = "3.0.7" +source = { registry = "https://pypi.org/simple" } +resolution-markers = [ + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", +] +dependencies = [ + { name = "bokeh", marker = "sys_platform == 'linux'" }, + { name = "ipywidgets", marker = "sys_platform == 'linux'" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/d8/bc/78cb5a91f5d88668cea999aa2d794f67930ca15f921e5c4adc59e90910c7/jupyter_bokeh-3.0.7.tar.gz", hash = "sha256:2da8c3ddc734d15737bf06126d9e31e84d30f18ac3da3a3f95be40a95a054c87", size = 777306, upload-time = "2023-03-14T10:09:10.928Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/99/c6/c4b923e6db17cfa52d3df37a0b7b0441e289d4e4ccfd0bc286ee51600ac5/jupyter_bokeh-3.0.7-py3-none-any.whl", hash = "sha256:676d74bd8b95c7467d5e7ea1c954b306c7768b7bfa2bb3dd32e64efdf7dc09ee", size = 1394083, upload-time = "2023-04-30T10:24:24.548Z" }, +] + +[[package]] +name = "jupyter-bokeh" +version = "4.0.5" +source = { registry = "https://pypi.org/simple" } +resolution-markers = [ + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", +] +dependencies = [ + { name = "bokeh", marker = "sys_platform == 'linux'" }, + { name = "ipywidgets", marker = "sys_platform == 'linux'" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/b4/fd/8f0213c704bf36b5f523ae5bf7dc367f3687e75dcc2354084b75c05d2b53/jupyter_bokeh-4.0.5.tar.gz", hash = "sha256:a33d6ab85588f13640b30765fa15d1111b055cbe44f67a65ca57d3593af8245d", size = 149140, upload-time = "2024-06-03T06:33:33.488Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/47/78/33b2294aad62e5f95b89a89379c5995c2bd978018387ef8bec79f6dc272c/jupyter_bokeh-4.0.5-py3-none-any.whl", hash = "sha256:1110076c14c779071cf492646a1a871aefa8a477261e4721327a666e65df1a2c", size = 148593, upload-time = "2024-06-03T06:33:35.82Z" }, +] + +[[package]] +name = "jupyter-client" +version = "8.6.3" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "jupyter-core", marker = "sys_platform == 'linux'" }, + { name = "python-dateutil", marker = "sys_platform == 'linux'" }, + { name = "pyzmq", marker = "sys_platform == 'linux'" }, + { name = "tornado", marker = "sys_platform == 'linux'" }, + { name = "traitlets", marker = "sys_platform == 'linux'" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/71/22/bf9f12fdaeae18019a468b68952a60fe6dbab5d67cd2a103cac7659b41ca/jupyter_client-8.6.3.tar.gz", hash = "sha256:35b3a0947c4a6e9d589eb97d7d4cd5e90f910ee73101611f01283732bd6d9419", size = 342019, upload-time = "2024-09-17T10:44:17.613Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/11/85/b0394e0b6fcccd2c1eeefc230978a6f8cb0c5df1e4cd3e7625735a0d7d1e/jupyter_client-8.6.3-py3-none-any.whl", hash = "sha256:e8a19cc986cc45905ac3362915f410f3af85424b4c0905e94fa5f2cb08e8f23f", size = 106105, upload-time = "2024-09-17T10:44:15.218Z" }, +] + +[[package]] +name = "jupyter-core" +version = "5.8.1" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "platformdirs", marker = "sys_platform == 'linux'" }, + { name = "traitlets", marker = "sys_platform == 'linux'" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/99/1b/72906d554acfeb588332eaaa6f61577705e9ec752ddb486f302dafa292d9/jupyter_core-5.8.1.tar.gz", hash = "sha256:0a5f9706f70e64786b75acba995988915ebd4601c8a52e534a40b51c95f59941", size = 88923, upload-time = "2025-05-27T07:38:16.655Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/2f/57/6bffd4b20b88da3800c5d691e0337761576ee688eb01299eae865689d2df/jupyter_core-5.8.1-py3-none-any.whl", hash = "sha256:c28d268fc90fb53f1338ded2eb410704c5449a358406e8a948b75706e24863d0", size = 28880, upload-time = "2025-05-27T07:38:15.137Z" }, +] + +[[package]] +name = "jupyter-events" +version = "0.12.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "jsonschema", extra = ["format-nongpl"], marker = "sys_platform == 'linux' or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai')" }, + { name = "packaging", marker = "sys_platform == 'linux'" }, + { name = "python-json-logger", marker = "sys_platform == 'linux'" }, + { name = "pyyaml", marker = "sys_platform == 'linux'" }, + { name = "referencing", marker = "sys_platform == 'linux'" }, + { name = "rfc3339-validator", marker = "sys_platform == 'linux'" }, + { name = "rfc3986-validator", marker = "sys_platform == 'linux'" }, + { name = "traitlets", marker = "sys_platform == 'linux'" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/9d/c3/306d090461e4cf3cd91eceaff84bede12a8e52cd821c2d20c9a4fd728385/jupyter_events-0.12.0.tar.gz", hash = "sha256:fc3fce98865f6784c9cd0a56a20644fc6098f21c8c33834a8d9fe383c17e554b", size = 62196, upload-time = "2025-02-03T17:23:41.485Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/e2/48/577993f1f99c552f18a0428731a755e06171f9902fa118c379eb7c04ea22/jupyter_events-0.12.0-py3-none-any.whl", hash = "sha256:6464b2fa5ad10451c3d35fabc75eab39556ae1e2853ad0c0cc31b656731a97fb", size = 19430, upload-time = "2025-02-03T17:23:38.643Z" }, +] + +[[package]] +name = "jupyter-lsp" +version = "2.2.5" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "jupyter-server", marker = "sys_platform == 'linux'" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/85/b4/3200b0b09c12bc3b72d943d923323c398eff382d1dcc7c0dbc8b74630e40/jupyter-lsp-2.2.5.tar.gz", hash = "sha256:793147a05ad446f809fd53ef1cd19a9f5256fd0a2d6b7ce943a982cb4f545001", size = 48741, upload-time = "2024-04-09T17:59:44.918Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/07/e0/7bd7cff65594fd9936e2f9385701e44574fc7d721331ff676ce440b14100/jupyter_lsp-2.2.5-py3-none-any.whl", hash = "sha256:45fbddbd505f3fbfb0b6cb2f1bc5e15e83ab7c79cd6e89416b248cb3c00c11da", size = 69146, upload-time = "2024-04-09T17:59:43.388Z" }, +] + +[[package]] +name = "jupyter-packaging" +version = "0.12.3" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "deprecation", marker = "sys_platform == 'linux'" }, + { name = "packaging", marker = "sys_platform == 'linux'" }, + { name = "setuptools", marker = "sys_platform == 'linux'" }, + { name = "tomlkit", marker = "sys_platform == 'linux'" }, + { name = "wheel", marker = "sys_platform == 'linux'" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/25/c5/b0e154e6403c6790bb1e66acddf9787296a8196f5b14f4bb9e4c92b6734e/jupyter_packaging-0.12.3.tar.gz", hash = "sha256:9d9b2b63b97ffd67a8bc5391c32a421bc415b264a32c99e4d8d8dd31daae9cf4", size = 25350, upload-time = "2022-08-25T15:31:43.44Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/dd/cb/6c4c3e2219c2fe6fff6f9d4bda48da21951c3bd8f39b443a586f13173ea0/jupyter_packaging-0.12.3-py3-none-any.whl", hash = "sha256:c1a376b23bcaced6dfc9ab0e924b015ce11552a1a5bccf783c6476957c538348", size = 15663, upload-time = "2022-08-25T15:31:40.92Z" }, +] + +[[package]] +name = "jupyter-resource-usage" +version = "1.1.1" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "jupyter-server", marker = "sys_platform == 'linux'" }, + { name = "prometheus-client", marker = "sys_platform == 'linux'" }, + { name = "psutil", marker = "sys_platform == 'linux'" }, + { name = "pyzmq", marker = "sys_platform == 'linux'" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/1b/03/e5fa16040408b5c33adb870e82f380dcb7fbdb16bcf61d6bc46f2b58e415/jupyter_resource_usage-1.1.1.tar.gz", hash = "sha256:f7a3451caec9f5e6343f60b0a8e4034652138df65ece7a9153242115845f9bbb", size = 434317, upload-time = "2025-02-04T13:13:27.622Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/5a/80/5a1162f784142988bbdfed16afa4354eadd1710148a0d4f7619fdafbfbd1/jupyter_resource_usage-1.1.1-py3-none-any.whl", hash = "sha256:1f163b51b1960801c84d01753907be695e4b23e6ce3f3291f6b03cab09cc438d", size = 48247, upload-time = "2025-02-04T13:13:24.782Z" }, +] + +[[package]] +name = "jupyter-server" +version = "2.15.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "anyio", marker = "sys_platform == 'linux'" }, + { name = "argon2-cffi", marker = "sys_platform == 'linux'" }, + { name = "jinja2", marker = "sys_platform == 'linux'" }, + { name = "jupyter-client", marker = "sys_platform == 'linux'" }, + { name = "jupyter-core", marker = "sys_platform == 'linux'" }, + { name = "jupyter-events", marker = "sys_platform == 'linux'" }, + { name = "jupyter-server-terminals", marker = "sys_platform == 'linux'" }, + { name = "nbconvert", marker = "sys_platform == 'linux'" }, + { name = "nbformat", marker = "sys_platform == 'linux'" }, + { name = "overrides", marker = "sys_platform == 'linux'" }, + { name = "packaging", marker = "sys_platform == 'linux'" }, + { name = "prometheus-client", marker = "sys_platform == 'linux'" }, + { name = "pyzmq", marker = "sys_platform == 'linux'" }, + { name = "send2trash", marker = "sys_platform == 'linux'" }, + { name = "terminado", marker = "sys_platform == 'linux'" }, + { name = "tornado", marker = "sys_platform == 'linux'" }, + { name = "traitlets", marker = "sys_platform == 'linux'" }, + { name = "websocket-client", marker = "sys_platform == 'linux'" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/61/8c/df09d4ab646141f130f9977b32b206ba8615d1969b2eba6a2e84b7f89137/jupyter_server-2.15.0.tar.gz", hash = "sha256:9d446b8697b4f7337a1b7cdcac40778babdd93ba614b6d68ab1c0c918f1c4084", size = 725227, upload-time = "2024-12-20T13:02:42.654Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/e2/a2/89eeaf0bb954a123a909859fa507fa86f96eb61b62dc30667b60dbd5fdaf/jupyter_server-2.15.0-py3-none-any.whl", hash = "sha256:872d989becf83517012ee669f09604aa4a28097c0bd90b2f424310156c2cdae3", size = 385826, upload-time = "2024-12-20T13:02:37.785Z" }, +] + +[[package]] +name = "jupyter-server-mathjax" +version = "0.2.6" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "jupyter-server", marker = "sys_platform == 'linux'" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/9c/40/9a1b8c2a2e44e8e2392174cd8e52e0c976335f004301f61b66addea3243e/jupyter_server_mathjax-0.2.6.tar.gz", hash = "sha256:bb1e6b6dc0686c1fe386a22b5886163db548893a99c2810c36399e9c4ca23943", size = 2648665, upload-time = "2022-07-14T16:19:32.161Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/7d/77/6a98cc88f1061c0206b427b602efb6fcb9bc369e958aee11676d5cfc4412/jupyter_server_mathjax-0.2.6-py3-none-any.whl", hash = "sha256:416389dde2010df46d5fbbb7adb087a5607111070af65a1445391040f2babb5e", size = 3120990, upload-time = "2022-07-14T16:19:29.517Z" }, +] + +[[package]] +name = "jupyter-server-proxy" +version = "4.4.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "aiohttp", marker = "sys_platform == 'linux'" }, + { name = "jupyter-server", marker = "sys_platform == 'linux'" }, + { name = "simpervisor", marker = "sys_platform == 'linux'" }, + { name = "tornado", marker = "sys_platform == 'linux'" }, + { name = "traitlets", marker = "sys_platform == 'linux'" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/2a/c8/ff6ecdbf55ac1a9253d53d87c60004ee508cfc852662b15fb33cd6ebfdbc/jupyter_server_proxy-4.4.0.tar.gz", hash = "sha256:e5732eb9c810c0caa997f90a2f15f7d09af638e7eea9c67eb5c43e9c1f0e1157", size = 136830, upload-time = "2024-08-29T12:49:22.906Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/fd/c6/e4a1d9fdd22d40962befd82780a98b20b67ef9cafe87246e4955f44b8f09/jupyter_server_proxy-4.4.0-py3-none-any.whl", hash = "sha256:707b5c84810bb8863d50f6c6d50a386fec216149e11802b7d4c451b54a63a9a6", size = 37567, upload-time = "2024-08-29T12:49:20.89Z" }, +] + +[[package]] +name = "jupyter-server-terminals" +version = "0.5.3" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "terminado", marker = "sys_platform == 'linux'" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/fc/d5/562469734f476159e99a55426d697cbf8e7eb5efe89fb0e0b4f83a3d3459/jupyter_server_terminals-0.5.3.tar.gz", hash = "sha256:5ae0295167220e9ace0edcfdb212afd2b01ee8d179fe6f23c899590e9b8a5269", size = 31430, upload-time = "2024-03-12T14:37:03.049Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/07/2d/2b32cdbe8d2a602f697a649798554e4f072115438e92249624e532e8aca6/jupyter_server_terminals-0.5.3-py3-none-any.whl", hash = "sha256:41ee0d7dc0ebf2809c668e0fc726dfaf258fcd3e769568996ca731b6194ae9aa", size = 13656, upload-time = "2024-03-12T14:37:00.708Z" }, +] + +[[package]] +name = "jupyterlab" +version = "4.2.7" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "async-lru", marker = "sys_platform == 'linux'" }, + { name = "httpx", marker = "sys_platform == 'linux'" }, + { name = "ipykernel", marker = "sys_platform == 'linux'" }, + { name = "jinja2", marker = "sys_platform == 'linux'" }, + { name = "jupyter-core", marker = "sys_platform == 'linux'" }, + { name = "jupyter-lsp", marker = "sys_platform == 'linux'" }, + { name = "jupyter-server", marker = "sys_platform == 'linux'" }, + { name = "jupyterlab-server", marker = "sys_platform == 'linux'" }, + { name = "notebook-shim", marker = "sys_platform == 'linux'" }, + { name = "packaging", marker = "sys_platform == 'linux'" }, + { name = "setuptools", marker = "sys_platform == 'linux'" }, + { name = "tornado", marker = "sys_platform == 'linux'" }, + { name = "traitlets", marker = "sys_platform == 'linux'" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/8f/51/9e1e089b7e3b4b60d5564463067bde91d9ad00410ed781ddb0139dda5f82/jupyterlab-4.2.7.tar.gz", hash = "sha256:7353c0704aec0e1219eb1e376c2d51f855a2522605f9ecdcab4993c006991ea3", size = 21508689, upload-time = "2025-01-08T12:26:44.613Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/71/0d/8b1e890d317b5beb9a727d7326e59921f1a4bd1f8c4f4bdf40a60ca9ab20/jupyterlab-4.2.7-py3-none-any.whl", hash = "sha256:a16a10a114360a4249c855e382b95260ebf2b91341884739dde954936096684d", size = 11642874, upload-time = "2025-01-08T12:26:38.574Z" }, +] + +[[package]] +name = "jupyterlab-git" +version = "0.50.2" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "jupyter-server", marker = "sys_platform == 'linux'" }, + { name = "nbdime", marker = "sys_platform == 'linux'" }, + { name = "nbformat", marker = "sys_platform == 'linux'" }, + { name = "packaging", marker = "sys_platform == 'linux'" }, + { name = "pexpect", marker = "sys_platform == 'linux'" }, + { name = "traitlets", marker = "sys_platform == 'linux'" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/c5/00/a8123e22ead190dce24c75aeb9a5708f3a6886abc91a3e18d45d7418e8aa/jupyterlab_git-0.50.2.tar.gz", hash = "sha256:ceefdc85632caf499a048b434459d03b5e621665801e9db7197bd486f5d33433", size = 15248711, upload-time = "2024-10-29T15:43:17.965Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/65/70/fb5a07776b00802afae9687e61db5e44b08959129988ba5df3791bd420b9/jupyterlab_git-0.50.2-py3-none-any.whl", hash = "sha256:059114d19fcb5560f82914b070ed7654fab62392e3c1fdd5946c5dc460ae3697", size = 1154095, upload-time = "2024-10-29T15:43:14.227Z" }, +] + +[[package]] +name = "jupyterlab-lsp" +version = "5.1.1" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "jupyter-lsp", marker = "sys_platform == 'linux'" }, + { name = "jupyterlab", marker = "sys_platform == 'linux'" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/8f/cb/d0172429ca322a006d835451c9d0d1f21744ebdacd5053e71d7dae0ca8af/jupyterlab_lsp-5.1.1.tar.gz", hash = "sha256:7233ca73ea0f2da8598ea33d84c243635466d1af70ddce8cd8336ef95dca08bf", size = 760482, upload-time = "2025-05-29T08:08:54.302Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/95/3b/c09f864400206fef1ad7f78cf2f96fd392efbf195ccb4c1c9ee122e9dca1/jupyterlab_lsp-5.1.1-py3-none-any.whl", hash = "sha256:9af980888230907432028ebd96068997d4336aef9850e7f81c3492f2e808bf80", size = 1565481, upload-time = "2025-05-29T08:08:50.578Z" }, +] + +[[package]] +name = "jupyterlab-pygments" +version = "0.3.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/90/51/9187be60d989df97f5f0aba133fa54e7300f17616e065d1ada7d7646b6d6/jupyterlab_pygments-0.3.0.tar.gz", hash = "sha256:721aca4d9029252b11cfa9d185e5b5af4d54772bb8072f9b7036f4170054d35d", size = 512900, upload-time = "2023-11-23T09:26:37.44Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/b1/dd/ead9d8ea85bf202d90cc513b533f9c363121c7792674f78e0d8a854b63b4/jupyterlab_pygments-0.3.0-py3-none-any.whl", hash = "sha256:841a89020971da1d8693f1a99997aefc5dc424bb1b251fd6322462a1b8842780", size = 15884, upload-time = "2023-11-23T09:26:34.325Z" }, +] + +[[package]] +name = "jupyterlab-server" +version = "2.27.3" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "babel", marker = "sys_platform == 'linux'" }, + { name = "jinja2", marker = "sys_platform == 'linux'" }, + { name = "json5", marker = "sys_platform == 'linux'" }, + { name = "jsonschema", marker = "sys_platform == 'linux'" }, + { name = "jupyter-server", marker = "sys_platform == 'linux'" }, + { name = "packaging", marker = "sys_platform == 'linux'" }, + { name = "requests", marker = "sys_platform == 'linux'" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/0a/c9/a883ce65eb27905ce77ace410d83587c82ea64dc85a48d1f7ed52bcfa68d/jupyterlab_server-2.27.3.tar.gz", hash = "sha256:eb36caca59e74471988f0ae25c77945610b887f777255aa21f8065def9e51ed4", size = 76173, upload-time = "2024-07-16T17:02:04.149Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/54/09/2032e7d15c544a0e3cd831c51d77a8ca57f7555b2e1b2922142eddb02a84/jupyterlab_server-2.27.3-py3-none-any.whl", hash = "sha256:e697488f66c3db49df675158a77b3b017520d772c6e1548c7d9bcc5df7944ee4", size = 59700, upload-time = "2024-07-16T17:02:01.115Z" }, +] + +[[package]] +name = "jupyterlab-widgets" +version = "3.0.15" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/b9/7d/160595ca88ee87ac6ba95d82177d29ec60aaa63821d3077babb22ce031a5/jupyterlab_widgets-3.0.15.tar.gz", hash = "sha256:2920888a0c2922351a9202817957a68c07d99673504d6cd37345299e971bb08b", size = 213149, upload-time = "2025-05-05T12:32:31.004Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/43/6a/ca128561b22b60bd5a0c4ea26649e68c8556b82bc70a0c396eebc977fe86/jupyterlab_widgets-3.0.15-py3-none-any.whl", hash = "sha256:d59023d7d7ef71400d51e6fee9a88867f6e65e10a4201605d2d7f3e8f012a31c", size = 216571, upload-time = "2025-05-05T12:32:29.534Z" }, +] + +[[package]] +name = "kafka-python-ng" +version = "2.2.3" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/ce/04/1d65bdf3f0103a08710e226b851de4b357ac702f1cadabf6128bab7518a7/kafka_python_ng-2.2.3.tar.gz", hash = "sha256:f79f28e10ade9b5a9860b2ec15b7cc8dc510d5702f5a399430478cff5f93a05a", size = 330644, upload-time = "2024-10-02T16:56:58.639Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/0f/61/22e778f642465a157c449782300d8817ebbc106794a8a7ebe88cbb846b05/kafka_python_ng-2.2.3-py2.py3-none-any.whl", hash = "sha256:adc6e82147c441ca4ae1f22e291fc08efab0d10971cbd4aa1481d2ffa38e9480", size = 232824, upload-time = "2024-10-02T16:56:56.932Z" }, +] + +[[package]] +name = "keras" +version = "2.14.0" +source = { registry = "https://pypi.org/simple" } +resolution-markers = [ + "python_full_version >= '3.12' and sys_platform == 'linux'", + "python_full_version < '3.12' and sys_platform == 'linux'", +] +sdist = { url = "https://files.pythonhosted.org/packages/bf/85/d52a86eb5ae700e1f8694157019249eb33350ae9e477cd03ecdb50939d22/keras-2.14.0.tar.gz", hash = "sha256:22788bdbc86d9988794fe9703bb5205141da797c4faeeb59497c58c3d94d34ed", size = 1251354, upload-time = "2023-09-11T17:21:04.379Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/fe/58/34d4d8f1aa11120c2d36d7ad27d0526164b1a8ae45990a2fede31d0e59bf/keras-2.14.0-py3-none-any.whl", hash = "sha256:d7429d1d2131cc7eb1f2ea2ec330227c7d9d38dab3dfdf2e78defee4ecc43fcd", size = 1709236, upload-time = "2023-09-11T17:21:02.164Z" }, +] + +[[package]] +name = "keras" +version = "3.10.0" +source = { registry = "https://pypi.org/simple" } +resolution-markers = [ + "python_full_version >= '3.12' and sys_platform == 'linux'", + "python_full_version < '3.12' and sys_platform == 'linux'", +] +dependencies = [ + { name = "absl-py", marker = "sys_platform == 'linux'" }, + { name = "h5py", marker = "sys_platform == 'linux'" }, + { name = "ml-dtypes", version = "0.5.1", source = { registry = "https://pypi.org/simple" }, marker = "sys_platform == 'linux'" }, + { name = "namex", marker = "sys_platform == 'linux'" }, + { name = "numpy", version = "1.26.4", source = { registry = "https://pypi.org/simple" }, marker = "sys_platform == 'linux'" }, + { name = "optree", marker = "sys_platform == 'linux'" }, + { name = "packaging", marker = "sys_platform == 'linux'" }, + { name = "rich", marker = "sys_platform == 'linux'" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/f3/fe/2946daf8477ae38a4b480c8889c72ede4f36eb28f9e1a27fc355cd633c3d/keras-3.10.0.tar.gz", hash = "sha256:6e9100bf66eaf6de4b7f288d34ef9bb8b5dcdd62f42c64cfd910226bb34ad2d2", size = 1040781, upload-time = "2025-05-19T22:58:30.833Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/95/e6/4179c461a5fc43e3736880f64dbdc9b1a5349649f0ae32ded927c0e3a227/keras-3.10.0-py3-none-any.whl", hash = "sha256:c095a6bf90cd50defadf73d4859ff794fad76b775357ef7bd1dbf96388dae7d3", size = 1380082, upload-time = "2025-05-19T22:58:28.938Z" }, +] + +[[package]] +name = "kfp" +version = "2.12.2" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "click", marker = "sys_platform == 'linux'" }, + { name = "docstring-parser", marker = "sys_platform == 'linux'" }, + { name = "google-api-core", marker = "sys_platform == 'linux'" }, + { name = "google-auth", marker = "sys_platform == 'linux'" }, + { name = "google-cloud-storage", marker = "sys_platform == 'linux'" }, + { name = "kfp-pipeline-spec", marker = "sys_platform == 'linux'" }, + { name = "kfp-server-api", marker = "sys_platform == 'linux'" }, + { name = "kubernetes", marker = "sys_platform == 'linux'" }, + { name = "protobuf", marker = "sys_platform == 'linux'" }, + { name = "pyyaml", marker = "sys_platform == 'linux'" }, + { name = "requests-toolbelt", marker = "sys_platform == 'linux'" }, + { name = "tabulate", marker = "sys_platform == 'linux'" }, + { name = "urllib3", marker = "sys_platform == 'linux'" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/81/55/2ae68bb09b1d45e022924072adf9bf9130cc2e73b4c63e9d0da1c183b077/kfp-2.12.2.tar.gz", hash = "sha256:63a9bd900672346fcf0fa24a081d4f4f15eeab03e31ae505443015ae1bb6ee09", size = 267499, upload-time = "2025-04-24T00:18:11.826Z" } + +[[package]] +name = "kfp-kubernetes" +version = "1.5.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "kfp", marker = "sys_platform == 'linux'" }, + { name = "protobuf", marker = "sys_platform == 'linux'" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/c8/b8/d41ed305110e4348b6c0828c9e8065aafe215db9ac4165f6b02da02a276e/kfp-kubernetes-1.5.0.tar.gz", hash = "sha256:84c2080f25934d21484f7a48eadbfd1f01f213fde0feb77f65346dbc544c855f", size = 16441, upload-time = "2025-04-28T21:13:01.496Z" } + +[[package]] +name = "kfp-pipeline-spec" +version = "0.6.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "protobuf", marker = "sys_platform == 'linux'" }, +] +wheels = [ + { url = "https://files.pythonhosted.org/packages/21/c4/5a42b32bddae9884b0ab23135f39e49ddb510b56ba9990757c6f873b87ae/kfp_pipeline_spec-0.6.0-py3-none-any.whl", hash = "sha256:9e319b62eaa54c6790a96f796d34f071458c9cae9585c662629eb090688555a7", size = 9081, upload-time = "2024-12-06T19:48:34.321Z" }, +] + +[[package]] +name = "kfp-server-api" +version = "2.4.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "certifi", marker = "sys_platform == 'linux'" }, + { name = "python-dateutil", marker = "sys_platform == 'linux'" }, + { name = "six", marker = "sys_platform == 'linux'" }, + { name = "urllib3", marker = "sys_platform == 'linux'" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/c0/5c/10c7cd96cee27da45a1b90d2a95f7ec76876673fdcb0c391110ec7e75089/kfp_server_api-2.4.0.tar.gz", hash = "sha256:9d71ce49fc6757af14b052cc47e4cb531cb4e4584c2ea76ec02b9197ee9a674f", size = 83953, upload-time = "2025-02-28T00:30:13.583Z" } + +[[package]] +name = "kiwisolver" +version = "1.4.8" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/82/59/7c91426a8ac292e1cdd53a63b6d9439abd573c875c3f92c146767dd33faf/kiwisolver-1.4.8.tar.gz", hash = "sha256:23d5f023bdc8c7e54eb65f03ca5d5bb25b601eac4d7f1a042888a1f45237987e", size = 97538, upload-time = "2024-12-24T18:30:51.519Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/da/ed/c913ee28936c371418cb167b128066ffb20bbf37771eecc2c97edf8a6e4c/kiwisolver-1.4.8-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:a4d3601908c560bdf880f07d94f31d734afd1bb71e96585cace0e38ef44c6d84", size = 124635, upload-time = "2024-12-24T18:28:51.826Z" }, + { url = "https://files.pythonhosted.org/packages/4c/45/4a7f896f7467aaf5f56ef093d1f329346f3b594e77c6a3c327b2d415f521/kiwisolver-1.4.8-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:856b269c4d28a5c0d5e6c1955ec36ebfd1651ac00e1ce0afa3e28da95293b561", size = 66717, upload-time = "2024-12-24T18:28:54.256Z" }, + { url = "https://files.pythonhosted.org/packages/5f/b4/c12b3ac0852a3a68f94598d4c8d569f55361beef6159dce4e7b624160da2/kiwisolver-1.4.8-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:c2b9a96e0f326205af81a15718a9073328df1173a2619a68553decb7097fd5d7", size = 65413, upload-time = "2024-12-24T18:28:55.184Z" }, + { url = "https://files.pythonhosted.org/packages/a9/98/1df4089b1ed23d83d410adfdc5947245c753bddfbe06541c4aae330e9e70/kiwisolver-1.4.8-cp311-cp311-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:c5020c83e8553f770cb3b5fc13faac40f17e0b205bd237aebd21d53d733adb03", size = 1343994, upload-time = "2024-12-24T18:28:57.493Z" }, + { url = "https://files.pythonhosted.org/packages/8d/bf/b4b169b050c8421a7c53ea1ea74e4ef9c335ee9013216c558a047f162d20/kiwisolver-1.4.8-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:dace81d28c787956bfbfbbfd72fdcef014f37d9b48830829e488fdb32b49d954", size = 1434804, upload-time = "2024-12-24T18:29:00.077Z" }, + { url = "https://files.pythonhosted.org/packages/66/5a/e13bd341fbcf73325ea60fdc8af752addf75c5079867af2e04cc41f34434/kiwisolver-1.4.8-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:11e1022b524bd48ae56c9b4f9296bce77e15a2e42a502cceba602f804b32bb79", size = 1450690, upload-time = "2024-12-24T18:29:01.401Z" }, + { url = "https://files.pythonhosted.org/packages/9b/4f/5955dcb376ba4a830384cc6fab7d7547bd6759fe75a09564910e9e3bb8ea/kiwisolver-1.4.8-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:3b9b4d2892fefc886f30301cdd80debd8bb01ecdf165a449eb6e78f79f0fabd6", size = 1376839, upload-time = "2024-12-24T18:29:02.685Z" }, + { url = "https://files.pythonhosted.org/packages/3a/97/5edbed69a9d0caa2e4aa616ae7df8127e10f6586940aa683a496c2c280b9/kiwisolver-1.4.8-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:3a96c0e790ee875d65e340ab383700e2b4891677b7fcd30a699146f9384a2bb0", size = 1435109, upload-time = "2024-12-24T18:29:04.113Z" }, + { url = "https://files.pythonhosted.org/packages/13/fc/e756382cb64e556af6c1809a1bbb22c141bbc2445049f2da06b420fe52bf/kiwisolver-1.4.8-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:23454ff084b07ac54ca8be535f4174170c1094a4cff78fbae4f73a4bcc0d4dab", size = 2245269, upload-time = "2024-12-24T18:29:05.488Z" }, + { url = "https://files.pythonhosted.org/packages/76/15/e59e45829d7f41c776d138245cabae6515cb4eb44b418f6d4109c478b481/kiwisolver-1.4.8-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:87b287251ad6488e95b4f0b4a79a6d04d3ea35fde6340eb38fbd1ca9cd35bbbc", size = 2393468, upload-time = "2024-12-24T18:29:06.79Z" }, + { url = "https://files.pythonhosted.org/packages/e9/39/483558c2a913ab8384d6e4b66a932406f87c95a6080112433da5ed668559/kiwisolver-1.4.8-cp311-cp311-musllinux_1_2_ppc64le.whl", hash = "sha256:b21dbe165081142b1232a240fc6383fd32cdd877ca6cc89eab93e5f5883e1c25", size = 2355394, upload-time = "2024-12-24T18:29:08.24Z" }, + { url = "https://files.pythonhosted.org/packages/01/aa/efad1fbca6570a161d29224f14b082960c7e08268a133fe5dc0f6906820e/kiwisolver-1.4.8-cp311-cp311-musllinux_1_2_s390x.whl", hash = "sha256:768cade2c2df13db52475bd28d3a3fac8c9eff04b0e9e2fda0f3760f20b3f7fc", size = 2490901, upload-time = "2024-12-24T18:29:09.653Z" }, + { url = "https://files.pythonhosted.org/packages/c9/4f/15988966ba46bcd5ab9d0c8296914436720dd67fca689ae1a75b4ec1c72f/kiwisolver-1.4.8-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:d47cfb2650f0e103d4bf68b0b5804c68da97272c84bb12850d877a95c056bd67", size = 2312306, upload-time = "2024-12-24T18:29:12.644Z" }, + { url = "https://files.pythonhosted.org/packages/2d/27/bdf1c769c83f74d98cbc34483a972f221440703054894a37d174fba8aa68/kiwisolver-1.4.8-cp311-cp311-win_amd64.whl", hash = "sha256:ed33ca2002a779a2e20eeb06aea7721b6e47f2d4b8a8ece979d8ba9e2a167e34", size = 71966, upload-time = "2024-12-24T18:29:14.089Z" }, + { url = "https://files.pythonhosted.org/packages/4a/c9/9642ea855604aeb2968a8e145fc662edf61db7632ad2e4fb92424be6b6c0/kiwisolver-1.4.8-cp311-cp311-win_arm64.whl", hash = "sha256:16523b40aab60426ffdebe33ac374457cf62863e330a90a0383639ce14bf44b2", size = 65311, upload-time = "2024-12-24T18:29:15.892Z" }, + { url = "https://files.pythonhosted.org/packages/fc/aa/cea685c4ab647f349c3bc92d2daf7ae34c8e8cf405a6dcd3a497f58a2ac3/kiwisolver-1.4.8-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:d6af5e8815fd02997cb6ad9bbed0ee1e60014438ee1a5c2444c96f87b8843502", size = 124152, upload-time = "2024-12-24T18:29:16.85Z" }, + { url = "https://files.pythonhosted.org/packages/c5/0b/8db6d2e2452d60d5ebc4ce4b204feeb16176a851fd42462f66ade6808084/kiwisolver-1.4.8-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:bade438f86e21d91e0cf5dd7c0ed00cda0f77c8c1616bd83f9fc157fa6760d31", size = 66555, upload-time = "2024-12-24T18:29:19.146Z" }, + { url = "https://files.pythonhosted.org/packages/60/26/d6a0db6785dd35d3ba5bf2b2df0aedc5af089962c6eb2cbf67a15b81369e/kiwisolver-1.4.8-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:b83dc6769ddbc57613280118fb4ce3cd08899cc3369f7d0e0fab518a7cf37fdb", size = 65067, upload-time = "2024-12-24T18:29:20.096Z" }, + { url = "https://files.pythonhosted.org/packages/c9/ed/1d97f7e3561e09757a196231edccc1bcf59d55ddccefa2afc9c615abd8e0/kiwisolver-1.4.8-cp312-cp312-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:111793b232842991be367ed828076b03d96202c19221b5ebab421ce8bcad016f", size = 1378443, upload-time = "2024-12-24T18:29:22.843Z" }, + { url = "https://files.pythonhosted.org/packages/29/61/39d30b99954e6b46f760e6289c12fede2ab96a254c443639052d1b573fbc/kiwisolver-1.4.8-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:257af1622860e51b1a9d0ce387bf5c2c4f36a90594cb9514f55b074bcc787cfc", size = 1472728, upload-time = "2024-12-24T18:29:24.463Z" }, + { url = "https://files.pythonhosted.org/packages/0c/3e/804163b932f7603ef256e4a715e5843a9600802bb23a68b4e08c8c0ff61d/kiwisolver-1.4.8-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:69b5637c3f316cab1ec1c9a12b8c5f4750a4c4b71af9157645bf32830e39c03a", size = 1478388, upload-time = "2024-12-24T18:29:25.776Z" }, + { url = "https://files.pythonhosted.org/packages/8a/9e/60eaa75169a154700be74f875a4d9961b11ba048bef315fbe89cb6999056/kiwisolver-1.4.8-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:782bb86f245ec18009890e7cb8d13a5ef54dcf2ebe18ed65f795e635a96a1c6a", size = 1413849, upload-time = "2024-12-24T18:29:27.202Z" }, + { url = "https://files.pythonhosted.org/packages/bc/b3/9458adb9472e61a998c8c4d95cfdfec91c73c53a375b30b1428310f923e4/kiwisolver-1.4.8-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:cc978a80a0db3a66d25767b03688f1147a69e6237175c0f4ffffaaedf744055a", size = 1475533, upload-time = "2024-12-24T18:29:28.638Z" }, + { url = "https://files.pythonhosted.org/packages/e4/7a/0a42d9571e35798de80aef4bb43a9b672aa7f8e58643d7bd1950398ffb0a/kiwisolver-1.4.8-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:36dbbfd34838500a31f52c9786990d00150860e46cd5041386f217101350f0d3", size = 2268898, upload-time = "2024-12-24T18:29:30.368Z" }, + { url = "https://files.pythonhosted.org/packages/d9/07/1255dc8d80271400126ed8db35a1795b1a2c098ac3a72645075d06fe5c5d/kiwisolver-1.4.8-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:eaa973f1e05131de5ff3569bbba7f5fd07ea0595d3870ed4a526d486fe57fa1b", size = 2425605, upload-time = "2024-12-24T18:29:33.151Z" }, + { url = "https://files.pythonhosted.org/packages/84/df/5a3b4cf13780ef6f6942df67b138b03b7e79e9f1f08f57c49957d5867f6e/kiwisolver-1.4.8-cp312-cp312-musllinux_1_2_ppc64le.whl", hash = "sha256:a66f60f8d0c87ab7f59b6fb80e642ebb29fec354a4dfad687ca4092ae69d04f4", size = 2375801, upload-time = "2024-12-24T18:29:34.584Z" }, + { url = "https://files.pythonhosted.org/packages/8f/10/2348d068e8b0f635c8c86892788dac7a6b5c0cb12356620ab575775aad89/kiwisolver-1.4.8-cp312-cp312-musllinux_1_2_s390x.whl", hash = "sha256:858416b7fb777a53f0c59ca08190ce24e9abbd3cffa18886a5781b8e3e26f65d", size = 2520077, upload-time = "2024-12-24T18:29:36.138Z" }, + { url = "https://files.pythonhosted.org/packages/32/d8/014b89fee5d4dce157d814303b0fce4d31385a2af4c41fed194b173b81ac/kiwisolver-1.4.8-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:085940635c62697391baafaaeabdf3dd7a6c3643577dde337f4d66eba021b2b8", size = 2338410, upload-time = "2024-12-24T18:29:39.991Z" }, + { url = "https://files.pythonhosted.org/packages/bd/72/dfff0cc97f2a0776e1c9eb5bef1ddfd45f46246c6533b0191887a427bca5/kiwisolver-1.4.8-cp312-cp312-win_amd64.whl", hash = "sha256:01c3d31902c7db5fb6182832713d3b4122ad9317c2c5877d0539227d96bb2e50", size = 71853, upload-time = "2024-12-24T18:29:42.006Z" }, + { url = "https://files.pythonhosted.org/packages/dc/85/220d13d914485c0948a00f0b9eb419efaf6da81b7d72e88ce2391f7aed8d/kiwisolver-1.4.8-cp312-cp312-win_arm64.whl", hash = "sha256:a3c44cb68861de93f0c4a8175fbaa691f0aa22550c331fefef02b618a9dcb476", size = 65424, upload-time = "2024-12-24T18:29:44.38Z" }, +] + +[[package]] +name = "kubeflow-training" +version = "1.9.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "certifi", marker = "sys_platform == 'linux'" }, + { name = "kubernetes", marker = "sys_platform == 'linux'" }, + { name = "retrying", marker = "sys_platform == 'linux'" }, + { name = "setuptools", marker = "sys_platform == 'linux'" }, + { name = "six", marker = "sys_platform == 'linux'" }, + { name = "urllib3", marker = "sys_platform == 'linux'" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/28/46/13b6a568841795845aa432d641356acaf63328416d930b59b05b32a5eb42/kubeflow-training-1.9.0.tar.gz", hash = "sha256:b8b2fead3f0491793dbe24e6b0d7c73d4bce47bfd0c3dc362d38f620f69ec744", size = 63676, upload-time = "2025-01-21T01:20:38.919Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/bc/d8/216bcea878fb7b1dcb02b15e6e95564dc45003f4c6e7c241344b93fbf1f6/kubeflow_training-1.9.0-py3-none-any.whl", hash = "sha256:d2fed2d3123fb553780b0cc12d2cb8a2a591eb5e5a86022ae26c7b372e384ae8", size = 111218, upload-time = "2025-01-21T01:20:37.416Z" }, +] + +[[package]] +name = "kubernetes" +version = "30.1.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "certifi", marker = "sys_platform == 'linux'" }, + { name = "google-auth", marker = "sys_platform == 'linux'" }, + { name = "oauthlib", marker = "sys_platform == 'linux'" }, + { name = "python-dateutil", marker = "sys_platform == 'linux'" }, + { name = "pyyaml", marker = "sys_platform == 'linux'" }, + { name = "requests", marker = "sys_platform == 'linux'" }, + { name = "requests-oauthlib", marker = "sys_platform == 'linux'" }, + { name = "six", marker = "sys_platform == 'linux'" }, + { name = "urllib3", marker = "sys_platform == 'linux'" }, + { name = "websocket-client", marker = "sys_platform == 'linux'" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/82/3c/9f29f6cab7f35df8e54f019e5719465fa97b877be2454e99f989270b4f34/kubernetes-30.1.0.tar.gz", hash = "sha256:41e4c77af9f28e7a6c314e3bd06a8c6229ddd787cad684e0ab9f69b498e98ebc", size = 887810, upload-time = "2024-06-06T15:58:30.031Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/62/a1/2027ddede72d33be2effc087580aeba07e733a7360780ae87226f1f91bd8/kubernetes-30.1.0-py2.py3-none-any.whl", hash = "sha256:e212e8b7579031dd2e512168b617373bc1e03888d41ac4e04039240a292d478d", size = 1706042, upload-time = "2024-06-06T15:58:27.13Z" }, +] + +[[package]] +name = "legacy-cgi" +version = "2.6.3" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/a6/ed/300cabc9693209d5a03e2ebc5eb5c4171b51607c08ed84a2b71c9015e0f3/legacy_cgi-2.6.3.tar.gz", hash = "sha256:4c119d6cb8e9d8b6ad7cc0ddad880552c62df4029622835d06dfd18f438a8154", size = 24401, upload-time = "2025-03-27T00:48:56.957Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/5a/33/68c6c38193684537757e0d50a7ccb4f4656e5c2f7cd2be737a9d4a1bff71/legacy_cgi-2.6.3-py3-none-any.whl", hash = "sha256:6df2ea5ae14c71ef6f097f8b6372b44f6685283dc018535a75c924564183cdab", size = 19851, upload-time = "2025-03-27T00:48:55.366Z" }, +] + +[[package]] +name = "libclang" +version = "18.1.1" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/6e/5c/ca35e19a4f142adffa27e3d652196b7362fa612243e2b916845d801454fc/libclang-18.1.1.tar.gz", hash = "sha256:a1214966d08d73d971287fc3ead8dfaf82eb07fb197680d8b3859dbbbbf78250", size = 39612, upload-time = "2024-03-17T16:04:37.434Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/4b/49/f5e3e7e1419872b69f6f5e82ba56e33955a74bd537d8a1f5f1eff2f3668a/libclang-18.1.1-1-py2.py3-none-macosx_11_0_arm64.whl", hash = "sha256:0b2e143f0fac830156feb56f9231ff8338c20aecfe72b4ffe96f19e5a1dbb69a", size = 25836045, upload-time = "2024-06-30T17:40:31.646Z" }, + { url = "https://files.pythonhosted.org/packages/e2/e5/fc61bbded91a8830ccce94c5294ecd6e88e496cc85f6704bf350c0634b70/libclang-18.1.1-py2.py3-none-macosx_10_9_x86_64.whl", hash = "sha256:6f14c3f194704e5d09769108f03185fce7acaf1d1ae4bbb2f30a72c2400cb7c5", size = 26502641, upload-time = "2024-03-18T15:52:26.722Z" }, + { url = "https://files.pythonhosted.org/packages/db/ed/1df62b44db2583375f6a8a5e2ca5432bbdc3edb477942b9b7c848c720055/libclang-18.1.1-py2.py3-none-macosx_11_0_arm64.whl", hash = "sha256:83ce5045d101b669ac38e6da8e58765f12da2d3aafb3b9b98d88b286a60964d8", size = 26420207, upload-time = "2024-03-17T15:00:26.63Z" }, + { url = "https://files.pythonhosted.org/packages/1d/fc/716c1e62e512ef1c160e7984a73a5fc7df45166f2ff3f254e71c58076f7c/libclang-18.1.1-py2.py3-none-manylinux2010_x86_64.whl", hash = "sha256:c533091d8a3bbf7460a00cb6c1a71da93bffe148f172c7d03b1c31fbf8aa2a0b", size = 24515943, upload-time = "2024-03-17T16:03:45.942Z" }, + { url = "https://files.pythonhosted.org/packages/3c/3d/f0ac1150280d8d20d059608cf2d5ff61b7c3b7f7bcf9c0f425ab92df769a/libclang-18.1.1-py2.py3-none-manylinux2014_aarch64.whl", hash = "sha256:54dda940a4a0491a9d1532bf071ea3ef26e6dbaf03b5000ed94dd7174e8f9592", size = 23784972, upload-time = "2024-03-17T16:12:47.677Z" }, + { url = "https://files.pythonhosted.org/packages/fe/2f/d920822c2b1ce9326a4c78c0c2b4aa3fde610c7ee9f631b600acb5376c26/libclang-18.1.1-py2.py3-none-manylinux2014_armv7l.whl", hash = "sha256:cf4a99b05376513717ab5d82a0db832c56ccea4fd61a69dbb7bccf2dfb207dbe", size = 20259606, upload-time = "2024-03-17T16:17:42.437Z" }, + { url = "https://files.pythonhosted.org/packages/2d/c2/de1db8c6d413597076a4259cea409b83459b2db997c003578affdd32bf66/libclang-18.1.1-py2.py3-none-musllinux_1_2_x86_64.whl", hash = "sha256:69f8eb8f65c279e765ffd28aaa7e9e364c776c17618af8bff22a8df58677ff4f", size = 24921494, upload-time = "2024-03-17T16:14:20.132Z" }, + { url = "https://files.pythonhosted.org/packages/0b/2d/3f480b1e1d31eb3d6de5e3ef641954e5c67430d5ac93b7fa7e07589576c7/libclang-18.1.1-py2.py3-none-win_amd64.whl", hash = "sha256:4dd2d3b82fab35e2bf9ca717d7b63ac990a3519c7e312f19fa8e86dcc712f7fb", size = 26415083, upload-time = "2024-03-17T16:42:21.703Z" }, + { url = "https://files.pythonhosted.org/packages/71/cf/e01dc4cc79779cd82d77888a88ae2fa424d93b445ad4f6c02bfc18335b70/libclang-18.1.1-py2.py3-none-win_arm64.whl", hash = "sha256:3f0e1f49f04d3cd198985fea0511576b0aee16f9ff0e0f0cad7f9c57ec3c20e8", size = 22361112, upload-time = "2024-03-17T16:42:59.565Z" }, +] + +[[package]] +name = "linkify-it-py" +version = "2.0.3" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "uc-micro-py", marker = "sys_platform == 'linux'" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/2a/ae/bb56c6828e4797ba5a4821eec7c43b8bf40f69cda4d4f5f8c8a2810ec96a/linkify-it-py-2.0.3.tar.gz", hash = "sha256:68cda27e162e9215c17d786649d1da0021a451bdc436ef9e0fa0ba5234b9b048", size = 27946, upload-time = "2024-02-04T14:48:04.179Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/04/1e/b832de447dee8b582cac175871d2f6c3d5077cc56d5575cadba1fd1cccfa/linkify_it_py-2.0.3-py3-none-any.whl", hash = "sha256:6bcbc417b0ac14323382aef5c5192c0075bf8a9d6b41820a2b66371eac6b6d79", size = 19820, upload-time = "2024-02-04T14:48:02.496Z" }, +] + +[[package]] +name = "markdown" +version = "3.8.2" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/d7/c2/4ab49206c17f75cb08d6311171f2d65798988db4360c4d1485bd0eedd67c/markdown-3.8.2.tar.gz", hash = "sha256:247b9a70dd12e27f67431ce62523e675b866d254f900c4fe75ce3dda62237c45", size = 362071, upload-time = "2025-06-19T17:12:44.483Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/96/2b/34cc11786bc00d0f04d0f5fdc3a2b1ae0b6239eef72d3d345805f9ad92a1/markdown-3.8.2-py3-none-any.whl", hash = "sha256:5c83764dbd4e00bdd94d85a19b8d55ccca20fe35b2e678a1422b380324dd5f24", size = 106827, upload-time = "2025-06-19T17:12:42.994Z" }, +] + +[[package]] +name = "markdown-it-py" +version = "3.0.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "mdurl", marker = "sys_platform == 'linux'" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/38/71/3b932df36c1a044d397a1f92d1cf91ee0a503d91e470cbd670aa66b07ed0/markdown-it-py-3.0.0.tar.gz", hash = "sha256:e3f60a94fa066dc52ec76661e37c851cb232d92f9886b15cb560aaada2df8feb", size = 74596, upload-time = "2023-06-03T06:41:14.443Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/42/d7/1ec15b46af6af88f19b8e5ffea08fa375d433c998b8a7639e76935c14f1f/markdown_it_py-3.0.0-py3-none-any.whl", hash = "sha256:355216845c60bd96232cd8d8c40e8f9765cc86f46880e43a8fd22dc1a1a8cab1", size = 87528, upload-time = "2023-06-03T06:41:11.019Z" }, +] + +[package.optional-dependencies] +linkify = [ + { name = "linkify-it-py", marker = "sys_platform == 'linux'" }, +] +plugins = [ + { name = "mdit-py-plugins", marker = "sys_platform == 'linux'" }, +] + +[[package]] +name = "markupsafe" +version = "3.0.2" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/b2/97/5d42485e71dfc078108a86d6de8fa46db44a1a9295e89c5d6d4a06e23a62/markupsafe-3.0.2.tar.gz", hash = "sha256:ee55d3edf80167e48ea11a923c7386f4669df67d7994554387f84e7d8b0a2bf0", size = 20537, upload-time = "2024-10-18T15:21:54.129Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/6b/28/bbf83e3f76936960b850435576dd5e67034e200469571be53f69174a2dfd/MarkupSafe-3.0.2-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:9025b4018f3a1314059769c7bf15441064b2207cb3f065e6ea1e7359cb46db9d", size = 14353, upload-time = "2024-10-18T15:21:02.187Z" }, + { url = "https://files.pythonhosted.org/packages/6c/30/316d194b093cde57d448a4c3209f22e3046c5bb2fb0820b118292b334be7/MarkupSafe-3.0.2-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:93335ca3812df2f366e80509ae119189886b0f3c2b81325d39efdb84a1e2ae93", size = 12392, upload-time = "2024-10-18T15:21:02.941Z" }, + { url = "https://files.pythonhosted.org/packages/f2/96/9cdafba8445d3a53cae530aaf83c38ec64c4d5427d975c974084af5bc5d2/MarkupSafe-3.0.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:2cb8438c3cbb25e220c2ab33bb226559e7afb3baec11c4f218ffa7308603c832", size = 23984, upload-time = "2024-10-18T15:21:03.953Z" }, + { url = "https://files.pythonhosted.org/packages/f1/a4/aefb044a2cd8d7334c8a47d3fb2c9f328ac48cb349468cc31c20b539305f/MarkupSafe-3.0.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a123e330ef0853c6e822384873bef7507557d8e4a082961e1defa947aa59ba84", size = 23120, upload-time = "2024-10-18T15:21:06.495Z" }, + { url = "https://files.pythonhosted.org/packages/8d/21/5e4851379f88f3fad1de30361db501300d4f07bcad047d3cb0449fc51f8c/MarkupSafe-3.0.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:1e084f686b92e5b83186b07e8a17fc09e38fff551f3602b249881fec658d3eca", size = 23032, upload-time = "2024-10-18T15:21:07.295Z" }, + { url = "https://files.pythonhosted.org/packages/00/7b/e92c64e079b2d0d7ddf69899c98842f3f9a60a1ae72657c89ce2655c999d/MarkupSafe-3.0.2-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:d8213e09c917a951de9d09ecee036d5c7d36cb6cb7dbaece4c71a60d79fb9798", size = 24057, upload-time = "2024-10-18T15:21:08.073Z" }, + { url = "https://files.pythonhosted.org/packages/f9/ac/46f960ca323037caa0a10662ef97d0a4728e890334fc156b9f9e52bcc4ca/MarkupSafe-3.0.2-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:5b02fb34468b6aaa40dfc198d813a641e3a63b98c2b05a16b9f80b7ec314185e", size = 23359, upload-time = "2024-10-18T15:21:09.318Z" }, + { url = "https://files.pythonhosted.org/packages/69/84/83439e16197337b8b14b6a5b9c2105fff81d42c2a7c5b58ac7b62ee2c3b1/MarkupSafe-3.0.2-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:0bff5e0ae4ef2e1ae4fdf2dfd5b76c75e5c2fa4132d05fc1b0dabcd20c7e28c4", size = 23306, upload-time = "2024-10-18T15:21:10.185Z" }, + { url = "https://files.pythonhosted.org/packages/9a/34/a15aa69f01e2181ed8d2b685c0d2f6655d5cca2c4db0ddea775e631918cd/MarkupSafe-3.0.2-cp311-cp311-win32.whl", hash = "sha256:6c89876f41da747c8d3677a2b540fb32ef5715f97b66eeb0c6b66f5e3ef6f59d", size = 15094, upload-time = "2024-10-18T15:21:11.005Z" }, + { url = "https://files.pythonhosted.org/packages/da/b8/3a3bd761922d416f3dc5d00bfbed11f66b1ab89a0c2b6e887240a30b0f6b/MarkupSafe-3.0.2-cp311-cp311-win_amd64.whl", hash = "sha256:70a87b411535ccad5ef2f1df5136506a10775d267e197e4cf531ced10537bd6b", size = 15521, upload-time = "2024-10-18T15:21:12.911Z" }, + { url = "https://files.pythonhosted.org/packages/22/09/d1f21434c97fc42f09d290cbb6350d44eb12f09cc62c9476effdb33a18aa/MarkupSafe-3.0.2-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:9778bd8ab0a994ebf6f84c2b949e65736d5575320a17ae8984a77fab08db94cf", size = 14274, upload-time = "2024-10-18T15:21:13.777Z" }, + { url = "https://files.pythonhosted.org/packages/6b/b0/18f76bba336fa5aecf79d45dcd6c806c280ec44538b3c13671d49099fdd0/MarkupSafe-3.0.2-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:846ade7b71e3536c4e56b386c2a47adf5741d2d8b94ec9dc3e92e5e1ee1e2225", size = 12348, upload-time = "2024-10-18T15:21:14.822Z" }, + { url = "https://files.pythonhosted.org/packages/e0/25/dd5c0f6ac1311e9b40f4af06c78efde0f3b5cbf02502f8ef9501294c425b/MarkupSafe-3.0.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1c99d261bd2d5f6b59325c92c73df481e05e57f19837bdca8413b9eac4bd8028", size = 24149, upload-time = "2024-10-18T15:21:15.642Z" }, + { url = "https://files.pythonhosted.org/packages/f3/f0/89e7aadfb3749d0f52234a0c8c7867877876e0a20b60e2188e9850794c17/MarkupSafe-3.0.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e17c96c14e19278594aa4841ec148115f9c7615a47382ecb6b82bd8fea3ab0c8", size = 23118, upload-time = "2024-10-18T15:21:17.133Z" }, + { url = "https://files.pythonhosted.org/packages/d5/da/f2eeb64c723f5e3777bc081da884b414671982008c47dcc1873d81f625b6/MarkupSafe-3.0.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:88416bd1e65dcea10bc7569faacb2c20ce071dd1f87539ca2ab364bf6231393c", size = 22993, upload-time = "2024-10-18T15:21:18.064Z" }, + { url = "https://files.pythonhosted.org/packages/da/0e/1f32af846df486dce7c227fe0f2398dc7e2e51d4a370508281f3c1c5cddc/MarkupSafe-3.0.2-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:2181e67807fc2fa785d0592dc2d6206c019b9502410671cc905d132a92866557", size = 24178, upload-time = "2024-10-18T15:21:18.859Z" }, + { url = "https://files.pythonhosted.org/packages/c4/f6/bb3ca0532de8086cbff5f06d137064c8410d10779c4c127e0e47d17c0b71/MarkupSafe-3.0.2-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:52305740fe773d09cffb16f8ed0427942901f00adedac82ec8b67752f58a1b22", size = 23319, upload-time = "2024-10-18T15:21:19.671Z" }, + { url = "https://files.pythonhosted.org/packages/a2/82/8be4c96ffee03c5b4a034e60a31294daf481e12c7c43ab8e34a1453ee48b/MarkupSafe-3.0.2-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:ad10d3ded218f1039f11a75f8091880239651b52e9bb592ca27de44eed242a48", size = 23352, upload-time = "2024-10-18T15:21:20.971Z" }, + { url = "https://files.pythonhosted.org/packages/51/ae/97827349d3fcffee7e184bdf7f41cd6b88d9919c80f0263ba7acd1bbcb18/MarkupSafe-3.0.2-cp312-cp312-win32.whl", hash = "sha256:0f4ca02bea9a23221c0182836703cbf8930c5e9454bacce27e767509fa286a30", size = 15097, upload-time = "2024-10-18T15:21:22.646Z" }, + { url = "https://files.pythonhosted.org/packages/c1/80/a61f99dc3a936413c3ee4e1eecac96c0da5ed07ad56fd975f1a9da5bc630/MarkupSafe-3.0.2-cp312-cp312-win_amd64.whl", hash = "sha256:8e06879fc22a25ca47312fbe7c8264eb0b662f6db27cb2d3bbbc74b1df4b9b87", size = 15601, upload-time = "2024-10-18T15:21:23.499Z" }, +] + +[[package]] +name = "matplotlib" +version = "3.6.3" +source = { registry = "https://pypi.org/simple" } +resolution-markers = [ + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", +] +dependencies = [ + { name = "contourpy", marker = "sys_platform == 'linux'" }, + { name = "cycler", marker = "sys_platform == 'linux'" }, + { name = "fonttools", marker = "sys_platform == 'linux'" }, + { name = "kiwisolver", marker = "sys_platform == 'linux'" }, + { name = "numpy", version = "1.24.4", source = { registry = "https://pypi.org/simple" }, marker = "sys_platform == 'linux'" }, + { name = "packaging", marker = "sys_platform == 'linux'" }, + { name = "pillow", marker = "sys_platform == 'linux'" }, + { name = "pyparsing", marker = "sys_platform == 'linux'" }, + { name = "python-dateutil", marker = "sys_platform == 'linux'" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/23/6d/2917ed23b17a8c4d1d59974a574cae0a365c392ba8820c8824b03a02f376/matplotlib-3.6.3.tar.gz", hash = "sha256:1f4d69707b1677560cd952544ee4962f68ff07952fb9069ff8c12b56353cb8c9", size = 35868590, upload-time = "2023-01-12T02:22:14.28Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/e1/6a/20d32bdb507816cd004f2c6dad875ed0421565119f4e7a83d6ad444cc168/matplotlib-3.6.3-cp311-cp311-macosx_10_12_universal2.whl", hash = "sha256:d2cfaa7fd62294d945b8843ea24228a27c8e7c5b48fa634f3c168153b825a21b", size = 8154861, upload-time = "2023-01-12T02:22:57.383Z" }, + { url = "https://files.pythonhosted.org/packages/09/ac/f3c841a09bb7479832832472ef9ec49c2069f437d0266c1168d586eee601/matplotlib-3.6.3-cp311-cp311-macosx_10_12_x86_64.whl", hash = "sha256:c3f08df2ac4636249b8bc7a85b8b82c983bef1441595936f62c2918370ca7e1d", size = 7335339, upload-time = "2023-01-12T02:22:59.578Z" }, + { url = "https://files.pythonhosted.org/packages/c9/ae/16043bdb37b6eff7da768ac37e5438e35fc72077f40581116a1a68926b73/matplotlib-3.6.3-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:ff2aa84e74f80891e6bcf292ebb1dd57714ffbe13177642d65fee25384a30894", size = 7244054, upload-time = "2023-01-12T02:23:02.497Z" }, + { url = "https://files.pythonhosted.org/packages/75/5b/b12a4113572fc132b1c68cf90a85c97a124883a8cf99adb78c537aab25da/matplotlib-3.6.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:11011c97d62c1db7bc20509572557842dbb8c2a2ddd3dd7f20501aa1cde3e54e", size = 11625748, upload-time = "2023-01-12T02:23:05.114Z" }, + { url = "https://files.pythonhosted.org/packages/05/d4/b53b365f314fbc86483a3da302c708bface0ab8a79f52c5ac85c9c040227/matplotlib-3.6.3-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:1c235bf9be052347373f589e018988cad177abb3f997ab1a2e2210c41562cc0c", size = 11724657, upload-time = "2023-01-12T02:23:07.97Z" }, + { url = "https://files.pythonhosted.org/packages/d2/8e/06325dffa65bd7b34c489ee412184bc3a0b6f9e95e40e5a9d58dd8b2a749/matplotlib-3.6.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bebcff4c3ed02c6399d47329f3554193abd824d3d53b5ca02cf583bcd94470e2", size = 11849363, upload-time = "2023-01-12T02:23:11.976Z" }, + { url = "https://files.pythonhosted.org/packages/05/d1/2eb0f798137c2ec5e36da51029e93c884f319ba539f8f9f71d08334a04b3/matplotlib-3.6.3-cp311-cp311-win32.whl", hash = "sha256:d5f18430f5cfa5571ab8f4c72c89af52aa0618e864c60028f11a857d62200cba", size = 7105962, upload-time = "2023-01-12T02:23:14.61Z" }, + { url = "https://files.pythonhosted.org/packages/f2/ab/645f1c12fcc32ae8a5a756636d3878d96d15238e4d8020b4aaea65a676c0/matplotlib-3.6.3-cp311-cp311-win_amd64.whl", hash = "sha256:dfba7057609ca9567b9704626756f0142e97ec8c5ba2c70c6e7bd1c25ef99f06", size = 7218520, upload-time = "2023-01-12T02:23:16.625Z" }, +] + +[[package]] +name = "matplotlib" +version = "3.10.3" +source = { registry = "https://pypi.org/simple" } +resolution-markers = [ + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", +] +dependencies = [ + { name = "contourpy", marker = "sys_platform == 'linux'" }, + { name = "cycler", marker = "sys_platform == 'linux'" }, + { name = "fonttools", marker = "sys_platform == 'linux'" }, + { name = "kiwisolver", marker = "sys_platform == 'linux'" }, + { name = "numpy", version = "1.26.4", source = { registry = "https://pypi.org/simple" }, marker = "(sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-tensorflow') or (sys_platform == 'linux' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (sys_platform == 'linux' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai')" }, + { name = "numpy", version = "2.2.6", source = { registry = "https://pypi.org/simple" }, marker = "(sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-preferred') or (sys_platform == 'linux' and extra == 'group-9-notebooks-jupyter-datascience-image') or (sys_platform == 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (sys_platform == 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai')" }, + { name = "packaging", marker = "sys_platform == 'linux'" }, + { name = "pillow", marker = "sys_platform == 'linux'" }, + { name = "pyparsing", marker = "sys_platform == 'linux'" }, + { name = "python-dateutil", marker = "sys_platform == 'linux'" }, +] +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/f5/bd/af9f655456f60fe1d575f54fb14704ee299b16e999704817a7645dfce6b0/matplotlib-3.10.3-cp311-cp311-macosx_10_12_x86_64.whl", hash = "sha256:0ef061f74cd488586f552d0c336b2f078d43bc00dc473d2c3e7bfee2272f3fa8", size = 8178873, upload-time = "2025-05-08T19:09:53.857Z" }, + { url = "https://files.pythonhosted.org/packages/c2/86/e1c86690610661cd716eda5f9d0b35eaf606ae6c9b6736687cfc8f2d0cd8/matplotlib-3.10.3-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:d96985d14dc5f4a736bbea4b9de9afaa735f8a0fc2ca75be2fa9e96b2097369d", size = 8052205, upload-time = "2025-05-08T19:09:55.684Z" }, + { url = "https://files.pythonhosted.org/packages/54/51/a9f8e49af3883dacddb2da1af5fca1f7468677f1188936452dd9aaaeb9ed/matplotlib-3.10.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:7c5f0283da91e9522bdba4d6583ed9d5521566f63729ffb68334f86d0bb98049", size = 8465823, upload-time = "2025-05-08T19:09:57.442Z" }, + { url = "https://files.pythonhosted.org/packages/e7/e3/c82963a3b86d6e6d5874cbeaa390166458a7f1961bab9feb14d3d1a10f02/matplotlib-3.10.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:fdfa07c0ec58035242bc8b2c8aae37037c9a886370eef6850703d7583e19964b", size = 8606464, upload-time = "2025-05-08T19:09:59.471Z" }, + { url = "https://files.pythonhosted.org/packages/0e/34/24da1027e7fcdd9e82da3194c470143c551852757a4b473a09a012f5b945/matplotlib-3.10.3-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:c0b9849a17bce080a16ebcb80a7b714b5677d0ec32161a2cc0a8e5a6030ae220", size = 9413103, upload-time = "2025-05-08T19:10:03.208Z" }, + { url = "https://files.pythonhosted.org/packages/a6/da/948a017c3ea13fd4a97afad5fdebe2f5bbc4d28c0654510ce6fd6b06b7bd/matplotlib-3.10.3-cp311-cp311-win_amd64.whl", hash = "sha256:eef6ed6c03717083bc6d69c2d7ee8624205c29a8e6ea5a31cd3492ecdbaee1e1", size = 8065492, upload-time = "2025-05-08T19:10:05.271Z" }, + { url = "https://files.pythonhosted.org/packages/eb/43/6b80eb47d1071f234ef0c96ca370c2ca621f91c12045f1401b5c9b28a639/matplotlib-3.10.3-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:0ab1affc11d1f495ab9e6362b8174a25afc19c081ba5b0775ef00533a4236eea", size = 8179689, upload-time = "2025-05-08T19:10:07.602Z" }, + { url = "https://files.pythonhosted.org/packages/0f/70/d61a591958325c357204870b5e7b164f93f2a8cca1dc6ce940f563909a13/matplotlib-3.10.3-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:2a818d8bdcafa7ed2eed74487fdb071c09c1ae24152d403952adad11fa3c65b4", size = 8050466, upload-time = "2025-05-08T19:10:09.383Z" }, + { url = "https://files.pythonhosted.org/packages/e7/75/70c9d2306203148cc7902a961240c5927dd8728afedf35e6a77e105a2985/matplotlib-3.10.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:748ebc3470c253e770b17d8b0557f0aa85cf8c63fd52f1a61af5b27ec0b7ffee", size = 8456252, upload-time = "2025-05-08T19:10:11.958Z" }, + { url = "https://files.pythonhosted.org/packages/c4/91/ba0ae1ff4b3f30972ad01cd4a8029e70a0ec3b8ea5be04764b128b66f763/matplotlib-3.10.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ed70453fd99733293ace1aec568255bc51c6361cb0da94fa5ebf0649fdb2150a", size = 8601321, upload-time = "2025-05-08T19:10:14.47Z" }, + { url = "https://files.pythonhosted.org/packages/d2/88/d636041eb54a84b889e11872d91f7cbf036b3b0e194a70fa064eb8b04f7a/matplotlib-3.10.3-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:dbed9917b44070e55640bd13419de83b4c918e52d97561544814ba463811cbc7", size = 9406972, upload-time = "2025-05-08T19:10:16.569Z" }, + { url = "https://files.pythonhosted.org/packages/b1/79/0d1c165eac44405a86478082e225fce87874f7198300bbebc55faaf6d28d/matplotlib-3.10.3-cp312-cp312-win_amd64.whl", hash = "sha256:cf37d8c6ef1a48829443e8ba5227b44236d7fcaf7647caa3178a4ff9f7a5be05", size = 8067954, upload-time = "2025-05-08T19:10:18.663Z" }, +] + +[[package]] +name = "matplotlib-inline" +version = "0.1.7" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "traitlets", marker = "sys_platform == 'linux'" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/99/5b/a36a337438a14116b16480db471ad061c36c3694df7c2084a0da7ba538b7/matplotlib_inline-0.1.7.tar.gz", hash = "sha256:8423b23ec666be3d16e16b60bdd8ac4e86e840ebd1dd11a30b9f117f2fa0ab90", size = 8159, upload-time = "2024-04-15T13:44:44.803Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/8f/8e/9ad090d3553c280a8060fbf6e24dc1c0c29704ee7d1c372f0c174aa59285/matplotlib_inline-0.1.7-py3-none-any.whl", hash = "sha256:df192d39a4ff8f21b1895d72e6a13f5fcc5099f00fa84384e0ea28c2cc0653ca", size = 9899, upload-time = "2024-04-15T13:44:43.265Z" }, +] + +[[package]] +name = "mccabe" +version = "0.7.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/e7/ff/0ffefdcac38932a54d2b5eed4e0ba8a408f215002cd178ad1df0f2806ff8/mccabe-0.7.0.tar.gz", hash = "sha256:348e0240c33b60bbdf4e523192ef919f28cb2c3d7d5c7794f74009290f236325", size = 9658, upload-time = "2022-01-24T01:14:51.113Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/27/1a/1f68f9ba0c207934b35b86a8ca3aad8395a3d6dd7921c0686e23853ff5a9/mccabe-0.7.0-py2.py3-none-any.whl", hash = "sha256:6c2d30ab6be0e4a46919781807b4f0d834ebdd6c6e3dca0bda5a15f863427b6e", size = 7350, upload-time = "2022-01-24T01:14:49.62Z" }, +] + +[[package]] +name = "mdit-py-plugins" +version = "0.4.2" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "markdown-it-py", marker = "sys_platform == 'linux'" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/19/03/a2ecab526543b152300717cf232bb4bb8605b6edb946c845016fa9c9c9fd/mdit_py_plugins-0.4.2.tar.gz", hash = "sha256:5f2cd1fdb606ddf152d37ec30e46101a60512bc0e5fa1a7002c36647b09e26b5", size = 43542, upload-time = "2024-09-09T20:27:49.564Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/a7/f7/7782a043553ee469c1ff49cfa1cdace2d6bf99a1f333cf38676b3ddf30da/mdit_py_plugins-0.4.2-py3-none-any.whl", hash = "sha256:0c673c3f889399a33b95e88d2f0d111b4447bdfea7f237dab2d488f459835636", size = 55316, upload-time = "2024-09-09T20:27:48.397Z" }, +] + +[[package]] +name = "mdurl" +version = "0.1.2" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/d6/54/cfe61301667036ec958cb99bd3efefba235e65cdeb9c84d24a8293ba1d90/mdurl-0.1.2.tar.gz", hash = "sha256:bb413d29f5eea38f31dd4754dd7377d4465116fb207585f97bf925588687c1ba", size = 8729, upload-time = "2022-08-14T12:40:10.846Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/b3/38/89ba8ad64ae25be8de66a6d463314cf1eb366222074cfda9ee839c56a4b4/mdurl-0.1.2-py3-none-any.whl", hash = "sha256:84008a41e51615a49fc9966191ff91509e3c40b939176e643fd50a5c2196b8f8", size = 9979, upload-time = "2022-08-14T12:40:09.779Z" }, +] + +[[package]] +name = "memray" +version = "1.17.2" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "jinja2", marker = "sys_platform == 'linux'" }, + { name = "rich", marker = "sys_platform == 'linux'" }, + { name = "textual", marker = "sys_platform == 'linux'" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/df/40/66e6ae86c0a22b8b998779fa8d6c0ab9ee63f0943198adcf714934286cbf/memray-1.17.2.tar.gz", hash = "sha256:eb75c075874a6eccddf361513d9d4a9223dd940580c6370a6ba5339bae5d0ba2", size = 1025995, upload-time = "2025-05-09T02:03:29.899Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/ab/53/fb5abeb10adbcbdef4a14b36e84b88162f2f38b718340c70ada0a7e37c93/memray-1.17.2-cp311-cp311-macosx_10_14_x86_64.whl", hash = "sha256:cfe93ee7a40e7901858469431b00c54280868bce108e360faf6834d36cb842f4", size = 882573, upload-time = "2025-05-09T02:02:33.316Z" }, + { url = "https://files.pythonhosted.org/packages/5a/6f/10a1de9e1c406e29a10e6b3ef5f79d2569c9823b792e109e92bfef0f856f/memray-1.17.2-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:3ba7518281c05c1469a5db43a6ea8d77d5467484f240e9d18d162e7fe758272b", size = 858602, upload-time = "2025-05-09T02:02:34.828Z" }, + { url = "https://files.pythonhosted.org/packages/ea/95/a469f99b02a5f6efbb0de52d203c377217f220a6f829d86eaf74f3c42dec/memray-1.17.2-cp311-cp311-manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:3efa65884d1775a27cb8d5faee3a54fd3b22be55e33c3a8f0c1d8293314770c0", size = 8307429, upload-time = "2025-05-09T02:02:36.43Z" }, + { url = "https://files.pythonhosted.org/packages/70/62/40c0df25dfc305dfb18248207b11c440557b0afbe05f6a1d98572c5fbc03/memray-1.17.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8288a9262a5323d489afd837477dec52b4ee184eb462434a2ccea97d9c05b94e", size = 7921668, upload-time = "2025-05-09T02:02:38.877Z" }, + { url = "https://files.pythonhosted.org/packages/b3/e7/adc3e08ae252b7d2bdfee501b7ea49cbeb625f29438f716b60d273908d0f/memray-1.17.2-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:1516956ff88a5dc106366a55554c930a51df25fdc8bf2ca105c8d220744eb23e", size = 7997217, upload-time = "2025-05-09T02:02:40.377Z" }, + { url = "https://files.pythonhosted.org/packages/74/f3/77731e6dda59e96ce3ba8ea369c047d368a3250ea4963a35c7ab90841504/memray-1.17.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:3eade446e1c0d9631d15fb90f9298bf84ebbfa1b2aac64bb9cbcda600ca7f25c", size = 8255393, upload-time = "2025-05-09T02:02:42.241Z" }, + { url = "https://files.pythonhosted.org/packages/56/36/b9858456988a87b8744f500660343eb5b11f22cae7ed42a14d9585cff641/memray-1.17.2-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:0f6298f00fb53f024f67a1cae2bd54389641e10e3364167e5d0f33f58d9f6777", size = 8242670, upload-time = "2025-05-09T02:02:44.006Z" }, + { url = "https://files.pythonhosted.org/packages/10/43/64bee789ca9213249d38e04618fcfbd0232fb3f1ea6a0fc8d7aacb804534/memray-1.17.2-cp312-cp312-macosx_10_14_x86_64.whl", hash = "sha256:1a16437bae39515b8c179432b647e9db445bf0e29b14a2b4bf7eefa2cdc7bbf7", size = 882938, upload-time = "2025-05-09T02:02:45.258Z" }, + { url = "https://files.pythonhosted.org/packages/ed/a3/8373a8622fa568845b6e5c7d6bb451d372f0411f1997cc9f81f9725a5bc4/memray-1.17.2-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:36784036e0c89f29f9f460871d2214cd17435d839ac8300a2dbea69463d134d1", size = 860937, upload-time = "2025-05-09T02:02:46.341Z" }, + { url = "https://files.pythonhosted.org/packages/1c/89/fe12e6371777e24d9dcc618171ca6f4ed710afcd0ed177276edceba4bf09/memray-1.17.2-cp312-cp312-manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:7c6bc6cd4ea58d1291e27e31302ad1e01500a08191c0265da8e5552368f6996a", size = 8297399, upload-time = "2025-05-09T02:02:47.553Z" }, + { url = "https://files.pythonhosted.org/packages/4c/d6/c81637b20dfb63b9442d59f5ff77c6ad255bda8dbe9e265dc7cdfba56d56/memray-1.17.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:2aa66358b2bddd8acc80ac04d65217cbe4d9a8d525b22f2a28f87c324addf945", size = 7882221, upload-time = "2025-05-09T02:02:49.401Z" }, + { url = "https://files.pythonhosted.org/packages/9d/29/2639c54251b81fa4f222b9eafcd7af5ccee65ed7aa7549ce235f989dc356/memray-1.17.2-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:53b81a3c850c88d20b5b9feaa30687c8438274cc0051706435967b2a02b9e314", size = 7970207, upload-time = "2025-05-09T02:02:50.892Z" }, + { url = "https://files.pythonhosted.org/packages/c8/3e/cfd3e5db2f4a8378285e0952eef64c265e94d3d1e2e35e4cf066beaf8339/memray-1.17.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d57c58b3a2ef52d9efb0e17940eb5db43317e536735260ce718e36dfdd0c51f5", size = 8243458, upload-time = "2025-05-09T02:02:52.927Z" }, + { url = "https://files.pythonhosted.org/packages/05/d1/e339f6f3ee34b157615797069f21a0f8e27fb24b4c53abc19bcea030b78c/memray-1.17.2-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:85704bce4548b519af5499e8cb01ddd7eaed12b3a2056c841d3745b55dc1de9a", size = 8204284, upload-time = "2025-05-09T02:02:54.284Z" }, +] + +[[package]] +name = "minio" +version = "7.2.15" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "argon2-cffi", marker = "sys_platform == 'linux'" }, + { name = "certifi", marker = "sys_platform == 'linux'" }, + { name = "pycryptodome", marker = "sys_platform == 'linux'" }, + { name = "typing-extensions", marker = "sys_platform == 'linux'" }, + { name = "urllib3", marker = "sys_platform == 'linux'" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/9e/68/86a1cef80396e6a35a6fc4fafee5d28578c1a137bddd3ca2aa86f9b26a22/minio-7.2.15.tar.gz", hash = "sha256:5247df5d4dca7bfa4c9b20093acd5ad43e82d8710ceb059d79c6eea970f49f79", size = 138040, upload-time = "2025-01-19T08:57:26.626Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/fb/6f/3690028e846fe432bfa5ba724a0dc37ec9c914965b7733e19d8ca2c4c48d/minio-7.2.15-py3-none-any.whl", hash = "sha256:c06ef7a43e5d67107067f77b6c07ebdd68733e5aa7eed03076472410ca19d876", size = 95075, upload-time = "2025-01-19T08:57:24.169Z" }, +] + +[[package]] +name = "mistune" +version = "3.1.3" +source = { registry = "https://pypi.org/simple" } +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" }, +] + +[[package]] +name = "ml-dtypes" +version = "0.2.0" +source = { registry = "https://pypi.org/simple" } +resolution-markers = [ + "python_full_version >= '3.12' and sys_platform == 'linux'", + "python_full_version < '3.12' and sys_platform == 'linux'", +] +dependencies = [ + { name = "numpy", version = "1.24.4", source = { registry = "https://pypi.org/simple" }, marker = "(sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-trustyai') or (sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai')" }, + { name = "numpy", version = "1.26.4", source = { registry = "https://pypi.org/simple" }, marker = "(sys_platform == 'linux' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-trustyai') or (sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai')" }, + { name = "numpy", version = "2.2.6", source = { registry = "https://pypi.org/simple" }, marker = "(sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-trustyai') or (sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai')" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/fa/47/09ca9556bf99cfe7ddf129a3423642bd482a27a717bf115090493fa42429/ml_dtypes-0.2.0.tar.gz", hash = "sha256:6488eb642acaaf08d8020f6de0a38acee7ac324c1e6e92ee0c0fea42422cb797", size = 698948, upload-time = "2023-06-06T15:14:43.679Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/15/da/43bee505963da0c730ee50e951c604bfdb90d4cccc9c0044c946b10e68a7/ml_dtypes-0.2.0-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:e70047ec2c83eaee01afdfdabee2c5b0c133804d90d0f7db4dd903360fcc537c", size = 1154491, upload-time = "2023-06-06T15:14:19.199Z" }, + { url = "https://files.pythonhosted.org/packages/49/a0/01570d615d16f504be091b914a6ae9a29e80d09b572ebebc32ecb1dfb22d/ml_dtypes-0.2.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:36d28b8861a8931695e5a31176cad5ae85f6504906650dea5598fbec06c94606", size = 1012631, upload-time = "2023-06-06T15:14:21.51Z" }, + { url = "https://files.pythonhosted.org/packages/87/91/d57c2d22e4801edeb7f3e7939214c0ea8a28c6e16f85208c2df2145e0213/ml_dtypes-0.2.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e85ba8e24cf48d456e564688e981cf379d4c8e644db0a2f719b78de281bac2ca", size = 1017764, upload-time = "2023-06-06T15:14:24.116Z" }, + { url = "https://files.pythonhosted.org/packages/08/89/c727fde1a3d12586e0b8c01abf53754707d76beaa9987640e70807d4545f/ml_dtypes-0.2.0-cp311-cp311-win_amd64.whl", hash = "sha256:832a019a1b6db5c4422032ca9940a990fa104eee420f643713241b3a518977fa", size = 938744, upload-time = "2023-06-06T15:14:25.77Z" }, +] + +[[package]] +name = "ml-dtypes" +version = "0.5.1" +source = { registry = "https://pypi.org/simple" } +resolution-markers = [ + "python_full_version >= '3.12' and sys_platform == 'linux'", + "python_full_version < '3.12' and sys_platform == 'linux'", +] +dependencies = [ + { name = "numpy", version = "1.26.4", source = { registry = "https://pypi.org/simple" }, marker = "sys_platform == 'linux'" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/32/49/6e67c334872d2c114df3020e579f3718c333198f8312290e09ec0216703a/ml_dtypes-0.5.1.tar.gz", hash = "sha256:ac5b58559bb84a95848ed6984eb8013249f90b6bab62aa5acbad876e256002c9", size = 698772, upload-time = "2025-01-07T03:34:55.613Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/c9/fd/691335926126bb9beeb030b61a28f462773dcf16b8e8a2253b599013a303/ml_dtypes-0.5.1-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:023ce2f502efd4d6c1e0472cc58ce3640d051d40e71e27386bed33901e201327", size = 671448, upload-time = "2025-01-07T03:34:03.153Z" }, + { url = "https://files.pythonhosted.org/packages/ff/a6/63832d91f2feb250d865d069ba1a5d0c686b1f308d1c74ce9764472c5e22/ml_dtypes-0.5.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:7000b6e4d8ef07542c05044ec5d8bbae1df083b3f56822c3da63993a113e716f", size = 4625792, upload-time = "2025-01-07T03:34:04.981Z" }, + { url = "https://files.pythonhosted.org/packages/cc/2a/5421fd3dbe6eef9b844cc9d05f568b9fb568503a2e51cb1eb4443d9fc56b/ml_dtypes-0.5.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c09526488c3a9e8b7a23a388d4974b670a9a3dd40c5c8a61db5593ce9b725bab", size = 4743893, upload-time = "2025-01-07T03:34:08.333Z" }, + { url = "https://files.pythonhosted.org/packages/60/30/d3f0fc9499a22801219679a7f3f8d59f1429943c6261f445fb4bfce20718/ml_dtypes-0.5.1-cp311-cp311-win_amd64.whl", hash = "sha256:15ad0f3b0323ce96c24637a88a6f44f6713c64032f27277b069f285c3cf66478", size = 209712, upload-time = "2025-01-07T03:34:12.182Z" }, + { url = "https://files.pythonhosted.org/packages/47/56/1bb21218e1e692506c220ffabd456af9733fba7aa1b14f73899979f4cc20/ml_dtypes-0.5.1-cp312-cp312-macosx_10_9_universal2.whl", hash = "sha256:6f462f5eca22fb66d7ff9c4744a3db4463af06c49816c4b6ac89b16bfcdc592e", size = 670372, upload-time = "2025-01-07T03:34:15.258Z" }, + { url = "https://files.pythonhosted.org/packages/20/95/d8bd96a3b60e00bf31bd78ca4bdd2d6bbaf5acb09b42844432d719d34061/ml_dtypes-0.5.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:6f76232163b5b9c34291b54621ee60417601e2e4802a188a0ea7157cd9b323f4", size = 4635946, upload-time = "2025-01-07T03:34:20.412Z" }, + { url = "https://files.pythonhosted.org/packages/08/57/5d58fad4124192b1be42f68bd0c0ddaa26e44a730ff8c9337adade2f5632/ml_dtypes-0.5.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ad4953c5eb9c25a56d11a913c2011d7e580a435ef5145f804d98efa14477d390", size = 4694804, upload-time = "2025-01-07T03:34:23.608Z" }, + { url = "https://files.pythonhosted.org/packages/38/bc/c4260e4a6c6bf684d0313308de1c860467275221d5e7daf69b3fcddfdd0b/ml_dtypes-0.5.1-cp312-cp312-win_amd64.whl", hash = "sha256:9626d0bca1fb387d5791ca36bacbba298c5ef554747b7ebeafefb4564fc83566", size = 210853, upload-time = "2025-01-07T03:34:26.027Z" }, +] + +[[package]] +name = "mock" +version = "5.2.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/07/8c/14c2ae915e5f9dca5a22edd68b35be94400719ccfa068a03e0fb63d0f6f6/mock-5.2.0.tar.gz", hash = "sha256:4e460e818629b4b173f32d08bf30d3af8123afbb8e04bb5707a1fd4799e503f0", size = 92796, upload-time = "2025-03-03T12:31:42.911Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/bd/d9/617e6af809bf3a1d468e0d58c3997b1dc219a9a9202e650d30c2fc85d481/mock-5.2.0-py3-none-any.whl", hash = "sha256:7ba87f72ca0e915175596069dbbcc7c75af7b5e9b9bc107ad6349ede0819982f", size = 31617, upload-time = "2025-03-03T12:31:41.518Z" }, +] + +[[package]] +name = "mpmath" +version = "1.3.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/e0/47/dd32fa426cc72114383ac549964eecb20ecfd886d1e5ccf5340b55b02f57/mpmath-1.3.0.tar.gz", hash = "sha256:7a28eb2a9774d00c7bc92411c19a89209d5da7c4c9a9e227be8330a23a25b91f", size = 508106, upload-time = "2023-03-07T16:47:11.061Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/43/e3/7d92a15f894aa0c9c4b49b8ee9ac9850d6e63b03c9c32c0367a13ae62209/mpmath-1.3.0-py3-none-any.whl", hash = "sha256:a0b2b9fe80bbcd81a6647ff13108738cfb482d481d826cc0e02f5b35e5c88d2c", size = 536198, upload-time = "2023-03-07T16:47:09.197Z" }, +] + +[[package]] +name = "msgpack" +version = "1.1.1" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/45/b1/ea4f68038a18c77c9467400d166d74c4ffa536f34761f7983a104357e614/msgpack-1.1.1.tar.gz", hash = "sha256:77b79ce34a2bdab2594f490c8e80dd62a02d650b91a75159a63ec413b8d104cd", size = 173555, upload-time = "2025-06-13T06:52:51.324Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/7f/83/97f24bf9848af23fe2ba04380388216defc49a8af6da0c28cc636d722502/msgpack-1.1.1-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:71ef05c1726884e44f8b1d1773604ab5d4d17729d8491403a705e649116c9558", size = 82728, upload-time = "2025-06-13T06:51:50.68Z" }, + { url = "https://files.pythonhosted.org/packages/aa/7f/2eaa388267a78401f6e182662b08a588ef4f3de6f0eab1ec09736a7aaa2b/msgpack-1.1.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:36043272c6aede309d29d56851f8841ba907a1a3d04435e43e8a19928e243c1d", size = 79279, upload-time = "2025-06-13T06:51:51.72Z" }, + { url = "https://files.pythonhosted.org/packages/f8/46/31eb60f4452c96161e4dfd26dbca562b4ec68c72e4ad07d9566d7ea35e8a/msgpack-1.1.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a32747b1b39c3ac27d0670122b57e6e57f28eefb725e0b625618d1b59bf9d1e0", size = 423859, upload-time = "2025-06-13T06:51:52.749Z" }, + { url = "https://files.pythonhosted.org/packages/45/16/a20fa8c32825cc7ae8457fab45670c7a8996d7746ce80ce41cc51e3b2bd7/msgpack-1.1.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8a8b10fdb84a43e50d38057b06901ec9da52baac6983d3f709d8507f3889d43f", size = 429975, upload-time = "2025-06-13T06:51:53.97Z" }, + { url = "https://files.pythonhosted.org/packages/86/ea/6c958e07692367feeb1a1594d35e22b62f7f476f3c568b002a5ea09d443d/msgpack-1.1.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:ba0c325c3f485dc54ec298d8b024e134acf07c10d494ffa24373bea729acf704", size = 413528, upload-time = "2025-06-13T06:51:55.507Z" }, + { url = "https://files.pythonhosted.org/packages/75/05/ac84063c5dae79722bda9f68b878dc31fc3059adb8633c79f1e82c2cd946/msgpack-1.1.1-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:88daaf7d146e48ec71212ce21109b66e06a98e5e44dca47d853cbfe171d6c8d2", size = 413338, upload-time = "2025-06-13T06:51:57.023Z" }, + { url = "https://files.pythonhosted.org/packages/69/e8/fe86b082c781d3e1c09ca0f4dacd457ede60a13119b6ce939efe2ea77b76/msgpack-1.1.1-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:d8b55ea20dc59b181d3f47103f113e6f28a5e1c89fd5b67b9140edb442ab67f2", size = 422658, upload-time = "2025-06-13T06:51:58.419Z" }, + { url = "https://files.pythonhosted.org/packages/3b/2b/bafc9924df52d8f3bb7c00d24e57be477f4d0f967c0a31ef5e2225e035c7/msgpack-1.1.1-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:4a28e8072ae9779f20427af07f53bbb8b4aa81151054e882aee333b158da8752", size = 427124, upload-time = "2025-06-13T06:51:59.969Z" }, + { url = "https://files.pythonhosted.org/packages/a2/3b/1f717e17e53e0ed0b68fa59e9188f3f610c79d7151f0e52ff3cd8eb6b2dc/msgpack-1.1.1-cp311-cp311-win32.whl", hash = "sha256:7da8831f9a0fdb526621ba09a281fadc58ea12701bc709e7b8cbc362feabc295", size = 65016, upload-time = "2025-06-13T06:52:01.294Z" }, + { url = "https://files.pythonhosted.org/packages/48/45/9d1780768d3b249accecc5a38c725eb1e203d44a191f7b7ff1941f7df60c/msgpack-1.1.1-cp311-cp311-win_amd64.whl", hash = "sha256:5fd1b58e1431008a57247d6e7cc4faa41c3607e8e7d4aaf81f7c29ea013cb458", size = 72267, upload-time = "2025-06-13T06:52:02.568Z" }, + { url = "https://files.pythonhosted.org/packages/e3/26/389b9c593eda2b8551b2e7126ad3a06af6f9b44274eb3a4f054d48ff7e47/msgpack-1.1.1-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:ae497b11f4c21558d95de9f64fff7053544f4d1a17731c866143ed6bb4591238", size = 82359, upload-time = "2025-06-13T06:52:03.909Z" }, + { url = "https://files.pythonhosted.org/packages/ab/65/7d1de38c8a22cf8b1551469159d4b6cf49be2126adc2482de50976084d78/msgpack-1.1.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:33be9ab121df9b6b461ff91baac6f2731f83d9b27ed948c5b9d1978ae28bf157", size = 79172, upload-time = "2025-06-13T06:52:05.246Z" }, + { url = "https://files.pythonhosted.org/packages/0f/bd/cacf208b64d9577a62c74b677e1ada005caa9b69a05a599889d6fc2ab20a/msgpack-1.1.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:6f64ae8fe7ffba251fecb8408540c34ee9df1c26674c50c4544d72dbf792e5ce", size = 425013, upload-time = "2025-06-13T06:52:06.341Z" }, + { url = "https://files.pythonhosted.org/packages/4d/ec/fd869e2567cc9c01278a736cfd1697941ba0d4b81a43e0aa2e8d71dab208/msgpack-1.1.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a494554874691720ba5891c9b0b39474ba43ffb1aaf32a5dac874effb1619e1a", size = 426905, upload-time = "2025-06-13T06:52:07.501Z" }, + { url = "https://files.pythonhosted.org/packages/55/2a/35860f33229075bce803a5593d046d8b489d7ba2fc85701e714fc1aaf898/msgpack-1.1.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:cb643284ab0ed26f6957d969fe0dd8bb17beb567beb8998140b5e38a90974f6c", size = 407336, upload-time = "2025-06-13T06:52:09.047Z" }, + { url = "https://files.pythonhosted.org/packages/8c/16/69ed8f3ada150bf92745fb4921bd621fd2cdf5a42e25eb50bcc57a5328f0/msgpack-1.1.1-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:d275a9e3c81b1093c060c3837e580c37f47c51eca031f7b5fb76f7b8470f5f9b", size = 409485, upload-time = "2025-06-13T06:52:10.382Z" }, + { url = "https://files.pythonhosted.org/packages/c6/b6/0c398039e4c6d0b2e37c61d7e0e9d13439f91f780686deb8ee64ecf1ae71/msgpack-1.1.1-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:4fd6b577e4541676e0cc9ddc1709d25014d3ad9a66caa19962c4f5de30fc09ef", size = 412182, upload-time = "2025-06-13T06:52:11.644Z" }, + { url = "https://files.pythonhosted.org/packages/b8/d0/0cf4a6ecb9bc960d624c93effaeaae75cbf00b3bc4a54f35c8507273cda1/msgpack-1.1.1-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:bb29aaa613c0a1c40d1af111abf025f1732cab333f96f285d6a93b934738a68a", size = 419883, upload-time = "2025-06-13T06:52:12.806Z" }, + { url = "https://files.pythonhosted.org/packages/62/83/9697c211720fa71a2dfb632cad6196a8af3abea56eece220fde4674dc44b/msgpack-1.1.1-cp312-cp312-win32.whl", hash = "sha256:870b9a626280c86cff9c576ec0d9cbcc54a1e5ebda9cd26dab12baf41fee218c", size = 65406, upload-time = "2025-06-13T06:52:14.271Z" }, + { url = "https://files.pythonhosted.org/packages/c0/23/0abb886e80eab08f5e8c485d6f13924028602829f63b8f5fa25a06636628/msgpack-1.1.1-cp312-cp312-win_amd64.whl", hash = "sha256:5692095123007180dca3e788bb4c399cc26626da51629a31d40207cb262e67f4", size = 72558, upload-time = "2025-06-13T06:52:15.252Z" }, +] + +[[package]] +name = "multidict" +version = "6.5.1" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/5c/43/2d90c414d9efc4587d6e7cebae9f2c2d8001bcb4f89ed514ae837e9dcbe6/multidict-6.5.1.tar.gz", hash = "sha256:a835ea8103f4723915d7d621529c80ef48db48ae0c818afcabe0f95aa1febc3a", size = 98690, upload-time = "2025-06-24T22:16:05.117Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/d5/65/439c3f595f68ee60d2c7abd14f36829b936b49c4939e35f24e65950b59b2/multidict-6.5.1-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:153d7ff738d9b67b94418b112dc5a662d89d2fc26846a9e942f039089048c804", size = 74129, upload-time = "2025-06-24T22:14:08.859Z" }, + { url = "https://files.pythonhosted.org/packages/8a/7a/88b474366126ef7cd427dca84ea6692d81e6e8ebb46f810a565e60716951/multidict-6.5.1-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:1d784c0a1974f00d87f632d0fb6b1078baf7e15d2d2d1408af92f54d120f136e", size = 43248, upload-time = "2025-06-24T22:14:10.017Z" }, + { url = "https://files.pythonhosted.org/packages/aa/8f/c45ff8980c2f2d1ed8f4f0c682953861fbb840adc318da1b26145587e443/multidict-6.5.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:dedf667cded1cdac5bfd3f3c2ff30010f484faccae4e871cc8a9316d2dc27363", size = 43250, upload-time = "2025-06-24T22:14:11.107Z" }, + { url = "https://files.pythonhosted.org/packages/ac/71/795e729385ecd8994d2033731ced3a80959e9c3c279766613565f5dcc7e1/multidict-6.5.1-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:7cbf407313236a79ce9b8af11808c29756cfb9c9a49a7f24bb1324537eec174b", size = 254313, upload-time = "2025-06-24T22:14:12.216Z" }, + { url = "https://files.pythonhosted.org/packages/de/5a/36e8dd1306f8f6e5b252d6341e919c4a776745e2c38f86bc27d0640d3379/multidict-6.5.1-cp311-cp311-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl", hash = "sha256:2bf0068fe9abb0ebed1436a4e415117386951cf598eb8146ded4baf8e1ff6d1e", size = 227162, upload-time = "2025-06-24T22:14:13.549Z" }, + { url = "https://files.pythonhosted.org/packages/f0/c2/4e68fb3a8ef5b23bbf3d82a19f4ff71de8289b696c662572a6cb094eabf6/multidict-6.5.1-cp311-cp311-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:195882f2f6272dacc88194ecd4de3608ad0ee29b161e541403b781a5f5dd346f", size = 265552, upload-time = "2025-06-24T22:14:14.846Z" }, + { url = "https://files.pythonhosted.org/packages/51/5b/b9ee059e39cd3fec2e1fe9ecb57165fba0518d79323a6f355275ed9ec956/multidict-6.5.1-cp311-cp311-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:5776f9d2c3a1053f022f744af5f467c2f65b40d4cc00082bcf70e8c462c7dbad", size = 260935, upload-time = "2025-06-24T22:14:16.209Z" }, + { url = "https://files.pythonhosted.org/packages/4c/0a/ea655a79d2d89dedb33f423b5dd3a733d97b1765a5e2155da883060fb48f/multidict-6.5.1-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:8a266373c604e49552d295d9f8ec4fd59bd364f2dd73eb18e7d36d5533b88f45", size = 251778, upload-time = "2025-06-24T22:14:17.963Z" }, + { url = "https://files.pythonhosted.org/packages/3f/58/8ff6b032f6c8956c8beb93a7191c80e4a6f385e9ffbe4a38c1cd758a7445/multidict-6.5.1-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:79101d58094419b6e8d07e24946eba440136b9095590271cd6ccc4a90674a57d", size = 249837, upload-time = "2025-06-24T22:14:19.344Z" }, + { url = "https://files.pythonhosted.org/packages/de/be/2fcdfd358ebc1be2ac3922a594daf660f99a23740f5177ba8b2fb6a66feb/multidict-6.5.1-cp311-cp311-musllinux_1_2_armv7l.whl", hash = "sha256:62eb76be8c20d9017a82b74965db93ddcf472b929b6b2b78c56972c73bacf2e4", size = 240831, upload-time = "2025-06-24T22:14:20.647Z" }, + { url = "https://files.pythonhosted.org/packages/e3/e0/1d3a4bb4ce34f314b919f4cb0da26430a6d88758f6d20b1c4f236a569085/multidict-6.5.1-cp311-cp311-musllinux_1_2_ppc64le.whl", hash = "sha256:70c742357dd6207be30922207f8d59c91e2776ddbefa23830c55c09020e59f8a", size = 262110, upload-time = "2025-06-24T22:14:21.919Z" }, + { url = "https://files.pythonhosted.org/packages/f0/5a/4cabf6661aa18e43dca54d00de06ef287740ad6ddbba34be53b3a554a6ee/multidict-6.5.1-cp311-cp311-musllinux_1_2_s390x.whl", hash = "sha256:29eff1c9a905e298e9cd29f856f77485e58e59355f0ee323ac748203e002bbd3", size = 250845, upload-time = "2025-06-24T22:14:23.276Z" }, + { url = "https://files.pythonhosted.org/packages/66/ad/44c44312d48423327d22be8c7058f9da8e2a527c9230d89b582670327efd/multidict-6.5.1-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:090e0b37fde199b58ea050c472c21dc8a3fbf285f42b862fe1ff02aab8942239", size = 247351, upload-time = "2025-06-24T22:14:24.523Z" }, + { url = "https://files.pythonhosted.org/packages/21/30/a12bbd76222be44c4f2d540c0d9cd1f932ab97e84a06098749f29b2908f5/multidict-6.5.1-cp311-cp311-win32.whl", hash = "sha256:6037beca8cb481307fb586ee0b73fae976a3e00d8f6ad7eb8af94a878a4893f0", size = 40644, upload-time = "2025-06-24T22:14:26.139Z" }, + { url = "https://files.pythonhosted.org/packages/90/58/2ce479dcb4611212eaa4808881d9a66a4362c48cd9f7b525b24a5d45764f/multidict-6.5.1-cp311-cp311-win_amd64.whl", hash = "sha256:b632c1e4a2ff0bb4c1367d6c23871aa95dbd616bf4a847034732a142bb6eea94", size = 44693, upload-time = "2025-06-24T22:14:27.265Z" }, + { url = "https://files.pythonhosted.org/packages/cc/d1/466a6cf48dcef796f2d75ba51af4475ac96c6ea33ef4dbf4cea1caf99532/multidict-6.5.1-cp311-cp311-win_arm64.whl", hash = "sha256:2ec3aa63f0c668f591d43195f8e555f803826dee34208c29ade9d63355f9e095", size = 41822, upload-time = "2025-06-24T22:14:28.387Z" }, + { url = "https://files.pythonhosted.org/packages/33/36/225fb9b890607d740f61957febf622f5c9cd9e641a93502c7877934d57ef/multidict-6.5.1-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:48f95fe064f63d9601ef7a3dce2fc2a437d5fcc11bca960bc8be720330b13b6a", size = 74287, upload-time = "2025-06-24T22:14:29.456Z" }, + { url = "https://files.pythonhosted.org/packages/70/e5/c9eabb16ecf77275664413263527ab169e08371dfa6b168025d8f67261fd/multidict-6.5.1-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:7b7b6e1ce9b61f721417c68eeeb37599b769f3b631e6b25c21f50f8f619420b9", size = 44092, upload-time = "2025-06-24T22:14:30.686Z" }, + { url = "https://files.pythonhosted.org/packages/df/0b/dd9322a432c477a2e6d089bbb53acb68ed25515b8292dbc60f27e7e45d70/multidict-6.5.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:8b83b055889bda09fc866c0a652cdb6c36eeeafc2858259c9a7171fe82df5773", size = 42565, upload-time = "2025-06-24T22:14:31.8Z" }, + { url = "https://files.pythonhosted.org/packages/f9/ac/22f5b4e55a4bc99f9622de280f7da366c1d7f29ec4eec9d339cb2ba62019/multidict-6.5.1-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:b7bd4d655dc460c7aebb73b58ed1c074e85f7286105b012556cf0f25c6d1dba3", size = 254896, upload-time = "2025-06-24T22:14:32.865Z" }, + { url = "https://files.pythonhosted.org/packages/09/dc/2f6d96d4a80ec731579cb69532fac33cbbda2a838079ae0c47c6e8f5545b/multidict-6.5.1-cp312-cp312-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl", hash = "sha256:aa6dcf25ced31cdce10f004506dbc26129f28a911b32ed10e54453a0842a6173", size = 236854, upload-time = "2025-06-24T22:14:34.185Z" }, + { url = "https://files.pythonhosted.org/packages/4a/cb/ef38a69ee75e8b72e5cff9ed4cff92379eadd057a99eaf4893494bf6ab64/multidict-6.5.1-cp312-cp312-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:059fb556c3e6ce1a168496f92ef139ad839a47f898eaa512b1d43e5e05d78c6b", size = 265131, upload-time = "2025-06-24T22:14:35.534Z" }, + { url = "https://files.pythonhosted.org/packages/c0/9e/85d9fe9e658e0edf566c02181248fa2aaf5e53134df0c80f7231ce5fc689/multidict-6.5.1-cp312-cp312-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:f97680c839dd9fa208e9584b1c2a5f1224bd01d31961f7f7d94984408c4a6b9e", size = 262187, upload-time = "2025-06-24T22:14:36.891Z" }, + { url = "https://files.pythonhosted.org/packages/2b/1c/b46ec1dd78c3faa55bffb354410c48fadd81029a144cd056828c82ca15b4/multidict-6.5.1-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:7710c716243525cc05cd038c6e09f1807ee0fef2510a6e484450712c389c8d7f", size = 251220, upload-time = "2025-06-24T22:14:38.584Z" }, + { url = "https://files.pythonhosted.org/packages/6b/6b/481ec5179ddc7da8b05077ebae2dd51da3df3ae3e5842020fbfa939167c1/multidict-6.5.1-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:83eb172b4856ffff2814bdcf9c7792c0439302faab1b31376817b067b26cd8f5", size = 249949, upload-time = "2025-06-24T22:14:40.033Z" }, + { url = "https://files.pythonhosted.org/packages/00/e3/642f63e12c1b8e6662c23626a98e9d764fe5a63c3a6cb59002f6fdcb920f/multidict-6.5.1-cp312-cp312-musllinux_1_2_armv7l.whl", hash = "sha256:562d4714fa43f6ebc043a657535e4575e7d6141a818c9b3055f0868d29a1a41b", size = 244438, upload-time = "2025-06-24T22:14:41.464Z" }, + { url = "https://files.pythonhosted.org/packages/dc/cf/797397f6d38b011912504aef213a4be43ef4ec134859caa47f94d810bad8/multidict-6.5.1-cp312-cp312-musllinux_1_2_ppc64le.whl", hash = "sha256:2d7def2fc47695c46a427b8f298fb5ace03d635c1fb17f30d6192c9a8fb69e70", size = 259921, upload-time = "2025-06-24T22:14:43.248Z" }, + { url = "https://files.pythonhosted.org/packages/82/b2/ae914a2d84eba21e956fa3727060248ca23ed4a5bf1beb057df0d10f9de3/multidict-6.5.1-cp312-cp312-musllinux_1_2_s390x.whl", hash = "sha256:77bc8ab5c6bfe696eff564824e73a451fdeca22f3b960261750836cee02bcbfa", size = 252691, upload-time = "2025-06-24T22:14:45.57Z" }, + { url = "https://files.pythonhosted.org/packages/01/fa/1ab4d79a236b871cfd40d36a1f9942906c630bd2b7822287bd3927addb62/multidict-6.5.1-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:9eec51891d3c210948ead894ec1483d48748abec08db5ce9af52cc13fef37aee", size = 246224, upload-time = "2025-06-24T22:14:47.316Z" }, + { url = "https://files.pythonhosted.org/packages/78/dd/bf002fe04e952db73cad8ce10a5b5347358d0d17221aef156e050aff690b/multidict-6.5.1-cp312-cp312-win32.whl", hash = "sha256:189f0c2bd1c0ae5509e453707d0e187e030c9e873a0116d1f32d1c870d0fc347", size = 41354, upload-time = "2025-06-24T22:14:48.567Z" }, + { url = "https://files.pythonhosted.org/packages/95/ce/508a8487d98fdc3e693755bc19c543a2af293f5ce96da398bd1974efb802/multidict-6.5.1-cp312-cp312-win_amd64.whl", hash = "sha256:e81f23b4b6f2a588f15d5cb554b2d8b482bb6044223d64b86bc7079cae9ebaad", size = 45072, upload-time = "2025-06-24T22:14:50.898Z" }, + { url = "https://files.pythonhosted.org/packages/ae/da/4782cf2f274d0d56fff6c07fc5cc5a14acf821dec08350c17d66d0207a05/multidict-6.5.1-cp312-cp312-win_arm64.whl", hash = "sha256:79d13e06d5241f9c8479dfeaf0f7cce8f453a4a302c9a0b1fa9b1a6869ff7757", size = 42149, upload-time = "2025-06-24T22:14:53.138Z" }, + { url = "https://files.pythonhosted.org/packages/07/9f/d4719ce55a1d8bf6619e8bb92f1e2e7399026ea85ae0c324ec77ee06c050/multidict-6.5.1-py3-none-any.whl", hash = "sha256:895354f4a38f53a1df2cc3fa2223fa714cff2b079a9f018a76cad35e7f0f044c", size = 12185, upload-time = "2025-06-24T22:16:03.816Z" }, +] + +[[package]] +name = "multiprocess" +version = "0.70.16" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "dill", marker = "sys_platform == 'linux'" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/b5/ae/04f39c5d0d0def03247c2893d6f2b83c136bf3320a2154d7b8858f2ba72d/multiprocess-0.70.16.tar.gz", hash = "sha256:161af703d4652a0e1410be6abccecde4a7ddffd19341be0a7011b94aeb171ac1", size = 1772603, upload-time = "2024-01-28T18:52:34.85Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/bc/f7/7ec7fddc92e50714ea3745631f79bd9c96424cb2702632521028e57d3a36/multiprocess-0.70.16-py310-none-any.whl", hash = "sha256:c4a9944c67bd49f823687463660a2d6daae94c289adff97e0f9d696ba6371d02", size = 134824, upload-time = "2024-01-28T18:52:26.062Z" }, + { url = "https://files.pythonhosted.org/packages/50/15/b56e50e8debaf439f44befec5b2af11db85f6e0f344c3113ae0be0593a91/multiprocess-0.70.16-py311-none-any.whl", hash = "sha256:af4cabb0dac72abfb1e794fa7855c325fd2b55a10a44628a3c1ad3311c04127a", size = 143519, upload-time = "2024-01-28T18:52:28.115Z" }, + { url = "https://files.pythonhosted.org/packages/0a/7d/a988f258104dcd2ccf1ed40fdc97e26c4ac351eeaf81d76e266c52d84e2f/multiprocess-0.70.16-py312-none-any.whl", hash = "sha256:fc0544c531920dde3b00c29863377f87e1632601092ea2daca74e4beb40faa2e", size = 146741, upload-time = "2024-01-28T18:52:29.395Z" }, + { url = "https://files.pythonhosted.org/packages/ea/89/38df130f2c799090c978b366cfdf5b96d08de5b29a4a293df7f7429fa50b/multiprocess-0.70.16-py38-none-any.whl", hash = "sha256:a71d82033454891091a226dfc319d0cfa8019a4e888ef9ca910372a446de4435", size = 132628, upload-time = "2024-01-28T18:52:30.853Z" }, + { url = "https://files.pythonhosted.org/packages/da/d9/f7f9379981e39b8c2511c9e0326d212accacb82f12fbfdc1aa2ce2a7b2b6/multiprocess-0.70.16-py39-none-any.whl", hash = "sha256:a0bafd3ae1b732eac64be2e72038231c1ba97724b60b09400d68f229fcc2fbf3", size = 133351, upload-time = "2024-01-28T18:52:31.981Z" }, +] + +[[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 = "mysql-connector-python" +version = "9.2.0" +source = { registry = "https://pypi.org/simple" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/6c/52/4a368c7db6a579e472e1e0a42e72e1b716828adb7aadad7b547c316c2791/mysql_connector_python-9.2.0-cp311-cp311-macosx_14_0_arm64.whl", hash = "sha256:bddecd023c0e92182eb3159abee7385a1d38b395a58ff4d94d3d6f1abeca6334", size = 15149325, upload-time = "2025-01-21T07:16:02.936Z" }, + { url = "https://files.pythonhosted.org/packages/e1/7d/681f02e0d70f371c8a5479d7339316ff89c791dcd7743aeca0102e733be4/mysql_connector_python-9.2.0-cp311-cp311-macosx_14_0_x86_64.whl", hash = "sha256:cc09ca64db620f7c898e1fb7c61a3d6f8f21694fcd276ab2635650ce216f8556", size = 15967956, upload-time = "2025-01-21T07:16:06.728Z" }, + { url = "https://files.pythonhosted.org/packages/94/30/b2d3a73b913cd83ce3dce4880abca83cf4a4aa275b5a27a740f83aa84b2d/mysql_connector_python-9.2.0-cp311-cp311-manylinux_2_28_aarch64.whl", hash = "sha256:4142a0a4e997210558136ad2b623188c102996eda2d951a3933d6338b210f15e", size = 33555392, upload-time = "2025-01-21T07:16:12.338Z" }, + { url = "https://files.pythonhosted.org/packages/a3/a3/31b5ccb491199ce4d05d9f867d07ad2ccc6487b412df94b036aad41b9b92/mysql_connector_python-9.2.0-cp311-cp311-manylinux_2_28_x86_64.whl", hash = "sha256:e1afa12519671e024d80fbbf74606cc4fb96786b005d79ed959acf3584ba6af4", size = 33953375, upload-time = "2025-01-21T07:16:20.61Z" }, + { url = "https://files.pythonhosted.org/packages/e2/18/42761250be6ad43a23edb7af85b9720ba8aa1a652036ab4854724d21f628/mysql_connector_python-9.2.0-cp311-cp311-win_amd64.whl", hash = "sha256:cf2684641084abc47be2dbba7bd42ce22c682bad4228a10bb12c343e1ecfc484", size = 16096251, upload-time = "2025-01-21T07:16:26.227Z" }, + { url = "https://files.pythonhosted.org/packages/74/b9/c29682db58fb08a22e623f1eeed12fe2743459d4928ed9d248a4f6fcda7f/mysql_connector_python-9.2.0-cp312-cp312-macosx_14_0_arm64.whl", hash = "sha256:03fe54ca19c2dffa8f04ca0601a1217b126ff8306c76a9b2b4e555f8fbbd2178", size = 15149615, upload-time = "2025-01-21T07:16:29.921Z" }, + { url = "https://files.pythonhosted.org/packages/d4/b9/3ae12be2fbf9650658e2db429245dd35514933b2972320eff311478fe234/mysql_connector_python-9.2.0-cp312-cp312-macosx_14_0_x86_64.whl", hash = "sha256:b13b136c188363e18f9b3f6237a0e6eba8601df259ab0f8687cd689f433a391b", size = 15968207, upload-time = "2025-01-21T07:16:34.731Z" }, + { url = "https://files.pythonhosted.org/packages/a3/26/ee7792df84193341755115e11ad02252b15bcc1f2c991ae06e04454e3b28/mysql_connector_python-9.2.0-cp312-cp312-manylinux_2_28_aarch64.whl", hash = "sha256:e8338a9babe6c67287080ec9f6a0fc245de24841bc532ef97dfd1f93caf4668b", size = 33555687, upload-time = "2025-01-21T07:16:39.802Z" }, + { url = "https://files.pythonhosted.org/packages/a3/4f/33afe9e1fd556d935986aad17c74416555607a6686b0bb3d20a9be192828/mysql_connector_python-9.2.0-cp312-cp312-manylinux_2_28_x86_64.whl", hash = "sha256:92ef9e5a37b25978a261b5a14fcfa0cf51cd96168dec4a52657bbfc1e1cb7d9a", size = 33954061, upload-time = "2025-01-21T07:16:45.675Z" }, + { url = "https://files.pythonhosted.org/packages/5c/48/aa1d3e1dd2fa0fece0581d49c6d10717e18fc86dde493114f3894a3371bd/mysql_connector_python-9.2.0-cp312-cp312-win_amd64.whl", hash = "sha256:b7d149bcc455cf606a4aa604d45267fba16c8abf36056b804f8d16e8f5e753c1", size = 16096342, upload-time = "2025-01-21T07:16:51.031Z" }, + { url = "https://files.pythonhosted.org/packages/55/aa/0ff1b80fcce28abb7ce53c1d3d14ebb28fb4206ca561480cb8b7d54163ad/mysql_connector_python-9.2.0-py2.py3-none-any.whl", hash = "sha256:d007c05a48fc076e5ac7ad3d76e332fa5b0e885853c2da80071ade2d6e01aba5", size = 398150, upload-time = "2025-01-21T07:17:51.335Z" }, +] + +[[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.44.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/56/e5/0b875d29e2a4d112c58fef6aac2ed3a73bbdd4d8d0dce722fd154357248a/narwhals-1.44.0.tar.gz", hash = "sha256:8cf0616d4f6f21225b3b56fcde96ccab6d05023561a0f162402aa9b8c33ad31d", size = 499250, upload-time = "2025-06-23T08:28:08.653Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/ff/fb/12f4a971467aac3cb7cbccbbfca5d0f05e23722068112c1ac4a393613ebe/narwhals-1.44.0-py3-none-any.whl", hash = "sha256:a170ea0bab4cf1f323d9f8bf17f2d7042c3d73802bea321996b39bf075d57de5", size = 365240, upload-time = "2025-06-23T08:28:06.314Z" }, +] + +[[package]] +name = "nbclient" +version = "0.10.2" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "jupyter-client", marker = "sys_platform == 'linux'" }, + { name = "jupyter-core", marker = "sys_platform == 'linux'" }, + { name = "nbformat", marker = "sys_platform == 'linux'" }, + { name = "traitlets", marker = "sys_platform == 'linux'" }, +] +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", marker = "sys_platform == 'linux'" }, + { name = "bleach", extra = ["css"], marker = "sys_platform == 'linux' or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai')" }, + { name = "defusedxml", marker = "sys_platform == 'linux'" }, + { name = "jinja2", marker = "sys_platform == 'linux'" }, + { name = "jupyter-core", marker = "sys_platform == 'linux'" }, + { name = "jupyterlab-pygments", marker = "sys_platform == 'linux'" }, + { name = "markupsafe", marker = "sys_platform == 'linux'" }, + { name = "mistune", marker = "sys_platform == 'linux'" }, + { name = "nbclient", marker = "sys_platform == 'linux'" }, + { name = "nbformat", marker = "sys_platform == 'linux'" }, + { name = "packaging", marker = "sys_platform == 'linux'" }, + { name = "pandocfilters", marker = "sys_platform == 'linux'" }, + { name = "pygments", marker = "sys_platform == 'linux'" }, + { name = "traitlets", marker = "sys_platform == 'linux'" }, +] +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 = "nbdime" +version = "4.0.2" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "colorama", marker = "sys_platform == 'linux'" }, + { name = "gitpython", marker = "sys_platform == 'linux'" }, + { name = "jinja2", marker = "sys_platform == 'linux'" }, + { name = "jupyter-server", marker = "sys_platform == 'linux'" }, + { name = "jupyter-server-mathjax", marker = "sys_platform == 'linux'" }, + { name = "nbformat", marker = "sys_platform == 'linux'" }, + { name = "pygments", marker = "sys_platform == 'linux'" }, + { name = "requests", marker = "sys_platform == 'linux'" }, + { name = "tornado", marker = "sys_platform == 'linux'" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/a6/f1/4be57ecea4d55d322f05a0f89e0b73d7a8d90a16dbf01168eab3e7bf5939/nbdime-4.0.2.tar.gz", hash = "sha256:d8279f8f4b236c0b253b20d60c4831bb67843ed8dbd6e09f234eb011d36f1bf2", size = 9452967, upload-time = "2024-09-05T13:25:07.444Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/73/23/824b295f4cc53f4437f6917e8f46c519cd3a9be909dd36ca0682fdc7fff1/nbdime-4.0.2-py3-none-any.whl", hash = "sha256:e5a43aca669c576c66e757071c0e882de05ac305311d79aded99bfb5a3e9419e", size = 5917346, upload-time = "2024-09-05T13:25:03.95Z" }, +] + +[[package]] +name = "nbformat" +version = "5.10.4" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "fastjsonschema", marker = "sys_platform == 'linux'" }, + { name = "jsonschema", marker = "sys_platform == 'linux'" }, + { name = "jupyter-core", marker = "sys_platform == 'linux'" }, + { name = "traitlets", marker = "sys_platform == 'linux'" }, +] +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 = "nbgitpuller" +version = "1.2.2" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "jupyter-server", marker = "sys_platform == 'linux'" }, + { name = "tornado", marker = "sys_platform == 'linux'" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/c6/69/2a633c33209df7fa6909f19a8a44e4db417b5705c00a28650b33622a0580/nbgitpuller-1.2.2.tar.gz", hash = "sha256:3a3dfe985642738ac01acba29e6703a2cd2468dd768b6f004eb74e836d22515d", size = 324148, upload-time = "2025-01-27T14:47:42.802Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/01/0a/0b4a7c22c0cac8c2edd6e69f5e5feb60edc0edf119cb313639ab1ec09f40/nbgitpuller-1.2.2-py2.py3-none-any.whl", hash = "sha256:19a6839928aabdb38383f05298889d407c872e392259b933cb5ddd31e4b22c6e", size = 317079, upload-time = "2025-01-27T14:47:40.589Z" }, +] + +[[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 = "netaddr" +version = "1.3.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/54/90/188b2a69654f27b221fba92fda7217778208532c962509e959a9cee5229d/netaddr-1.3.0.tar.gz", hash = "sha256:5c3c3d9895b551b763779ba7db7a03487dc1f8e3b385af819af341ae9ef6e48a", size = 2260504, upload-time = "2024-05-28T21:30:37.743Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/12/cc/f4fe2c7ce68b92cbf5b2d379ca366e1edae38cccaad00f69f529b460c3ef/netaddr-1.3.0-py3-none-any.whl", hash = "sha256:c2c6a8ebe5554ce33b7d5b3a306b71bbb373e000bbbf2350dd5213cc56e3dbbe", size = 2262023, upload-time = "2024-05-28T21:30:34.191Z" }, +] + +[[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" }, +] + +[[package]] +name = "nodeenv" +version = "1.9.1" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/43/16/fc88b08840de0e0a72a2f9d8c6bae36be573e475a6326ae854bcc549fc45/nodeenv-1.9.1.tar.gz", hash = "sha256:6ec12890a2dab7946721edbfbcd91f3319c6ccc9aec47be7c7e6b7011ee6645f", size = 47437, upload-time = "2024-06-04T18:44:11.171Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/d2/1d/1b658dbd2b9fa9c4c9f32accbfc0205d532c8c6194dc0f2a4c0428e7128a/nodeenv-1.9.1-py2.py3-none-any.whl", hash = "sha256:ba11c9782d29c27c70ffbdda2d7415098754709be8a7056d79a737cd901155c9", size = 22314, upload-time = "2024-06-04T18:44:08.352Z" }, +] + +[[package]] +name = "notebook-shim" +version = "0.2.4" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "jupyter-server", marker = "sys_platform == 'linux'" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/54/d2/92fa3243712b9a3e8bafaf60aac366da1cada3639ca767ff4b5b3654ec28/notebook_shim-0.2.4.tar.gz", hash = "sha256:b4b2cfa1b65d98307ca24361f5b30fe785b53c3fd07b7a47e89acb5e6ac638cb", size = 13167, upload-time = "2024-02-14T23:35:18.353Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/f9/33/bd5b9137445ea4b680023eb0469b2bb969d61303dedb2aac6560ff3d14a1/notebook_shim-0.2.4-py3-none-any.whl", hash = "sha256:411a5be4e9dc882a074ccbcae671eda64cceb068767e9a3419096986560e1cef", size = 13307, upload-time = "2024-02-14T23:35:16.286Z" }, +] + +[[package]] +name = "notebooks" +version = "2025.1" +source = { virtual = "." } + +[package.dev-dependencies] +base = [ + { name = "setuptools", marker = "sys_platform == 'linux' or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai')" }, + { name = "wheel", marker = "sys_platform == 'linux' or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai')" }, +] +datascience-base = [ + { name = "boto3", marker = "sys_platform == 'linux' or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai')" }, + { name = "codeflare-sdk", marker = "sys_platform == 'linux' or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai')" }, + { name = "kafka-python-ng", marker = "sys_platform == 'linux' or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai')" }, + { name = "kfp", marker = "sys_platform == 'linux' or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai')" }, + { name = "kubeflow-training", marker = "sys_platform == 'linux' or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai')" }, + { name = "onnxconverter-common", marker = "sys_platform == 'linux' or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai')" }, + { name = "plotly", marker = "sys_platform == 'linux' or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai')" }, + { name = "scipy", marker = "sys_platform == 'linux' or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai')" }, + { name = "skl2onnx", marker = "sys_platform == 'linux' or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai')" }, +] +datascience-preferred = [ + { name = "matplotlib", version = "3.10.3", source = { registry = "https://pypi.org/simple" }, marker = "sys_platform == 'linux' or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm')" }, + { name = "numpy", version = "2.2.6", source = { registry = "https://pypi.org/simple" }, marker = "sys_platform == 'linux' or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm')" }, + { name = "pandas", version = "2.2.3", source = { registry = "https://pypi.org/simple" }, marker = "sys_platform == 'linux' or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm')" }, + { name = "scikit-learn", version = "1.6.1", source = { registry = "https://pypi.org/simple" }, marker = "sys_platform == 'linux' or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm')" }, +] +datascience-tensorflow = [ + { name = "matplotlib", version = "3.10.3", source = { registry = "https://pypi.org/simple" }, marker = "sys_platform == 'linux' or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm')" }, + { name = "numpy", version = "1.26.4", source = { registry = "https://pypi.org/simple" }, marker = "sys_platform == 'linux' or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm')" }, + { name = "pandas", version = "2.2.3", source = { registry = "https://pypi.org/simple" }, marker = "sys_platform == 'linux' or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm')" }, + { name = "scikit-learn", version = "1.6.1", source = { registry = "https://pypi.org/simple" }, marker = "sys_platform == 'linux' or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm')" }, +] +datascience-trustyai = [ + { name = "matplotlib", version = "3.6.3", source = { registry = "https://pypi.org/simple" }, marker = "sys_platform == 'linux' or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm')" }, + { name = "numpy", version = "1.24.4", source = { registry = "https://pypi.org/simple" }, marker = "sys_platform == 'linux' or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm')" }, + { name = "pandas", version = "1.5.3", source = { registry = "https://pypi.org/simple" }, marker = "sys_platform == 'linux' or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm')" }, + { name = "scikit-learn", version = "1.2.2", source = { registry = "https://pypi.org/simple" }, marker = "sys_platform == 'linux' or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm')" }, +] +db-connectors = [ + { name = "mysql-connector-python", marker = "sys_platform == 'linux' or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai')" }, + { name = "psycopg", marker = "sys_platform == 'linux' or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai')" }, + { name = "pymongo", marker = "sys_platform == 'linux' or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai')" }, + { name = "pyodbc", marker = "sys_platform == 'linux' or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai')" }, +] +dev = [ + { name = "allure-pytest", marker = "sys_platform == 'linux' or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai')" }, + { name = "docker", marker = "sys_platform == 'linux' or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai')" }, + { name = "kubernetes", marker = "sys_platform == 'linux' or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai')" }, + { name = "openshift-python-wrapper", marker = "sys_platform == 'linux' or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai')" }, + { name = "podman", marker = "sys_platform == 'linux' or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai')" }, + { name = "pre-commit", marker = "sys_platform == 'linux' or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai')" }, + { name = "pydantic", version = "1.10.22", source = { registry = "https://pypi.org/simple" }, marker = "(sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base') or (sys_platform == 'linux' and extra == 'group-9-notebooks-jupyter-datascience-image') or (sys_platform == 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (sys_platform == 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (sys_platform == 'linux' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (sys_platform == 'linux' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (sys_platform == 'linux' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai')" }, + { name = "pydantic", version = "2.10.6", source = { registry = "https://pypi.org/simple" }, marker = "(sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-trustyai') or (sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-elyra-trustyai') or (sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-elyra-trustyai') or (sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-trustyai-image') or (sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image') or (sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-trustyai')" }, + { name = "pyfakefs", marker = "sys_platform == 'linux' or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai')" }, + { name = "pyright", marker = "sys_platform == 'linux' or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai')" }, + { name = "pytest", marker = "sys_platform == 'linux' or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai')" }, + { name = "pytest-subtests", marker = "sys_platform == 'linux' or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai')" }, + { name = "pyyaml", marker = "sys_platform == 'linux' or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai')" }, + { name = "requests", marker = "sys_platform == 'linux' or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai')" }, + { name = "ruff", marker = "sys_platform == 'linux' or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai')" }, + { name = "testcontainers", marker = "sys_platform == 'linux' or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai')" }, +] +elyra-base = [ + { name = "jupyter-resource-usage", marker = "sys_platform == 'linux' or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai')" }, + { name = "jupyterlab-lsp", marker = "sys_platform == 'linux' or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai')" }, + { name = "jupyterlab-widgets", marker = "sys_platform == 'linux' or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai')" }, + { name = "odh-elyra", marker = "sys_platform == 'linux' or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai')" }, +] +elyra-preferred = [ + { name = "jupyter-bokeh", version = "4.0.5", source = { registry = "https://pypi.org/simple" }, marker = "sys_platform == 'linux' or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm')" }, +] +elyra-trustyai = [ + { name = "jupyter-bokeh", version = "3.0.7", source = { registry = "https://pypi.org/simple" }, marker = "sys_platform == 'linux' or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai')" }, +] +jupyter-base = [ + { name = "jupyter-server", marker = "sys_platform == 'linux' or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai')" }, + { name = "jupyter-server-proxy", marker = "sys_platform == 'linux' or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai')" }, + { name = "jupyter-server-terminals", marker = "sys_platform == 'linux' or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai')" }, + { name = "jupyterlab", marker = "sys_platform == 'linux' or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai')" }, + { name = "jupyterlab-git", marker = "sys_platform == 'linux' or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai')" }, + { name = "nbdime", marker = "sys_platform == 'linux' or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai')" }, + { name = "nbgitpuller", marker = "sys_platform == 'linux' or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai')" }, +] +jupyter-datascience-image = [ + { name = "boto3", marker = "sys_platform == 'linux' or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm')" }, + { name = "codeflare-sdk", marker = "sys_platform == 'linux' or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm')" }, + { name = "jupyter-bokeh", version = "4.0.5", source = { registry = "https://pypi.org/simple" }, marker = "sys_platform == 'linux' or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm')" }, + { name = "jupyter-resource-usage", marker = "sys_platform == 'linux' or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm')" }, + { name = "jupyter-server", marker = "sys_platform == 'linux' or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm')" }, + { name = "jupyter-server-proxy", marker = "sys_platform == 'linux' or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm')" }, + { name = "jupyter-server-terminals", marker = "sys_platform == 'linux' or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm')" }, + { name = "jupyterlab", marker = "sys_platform == 'linux' or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm')" }, + { name = "jupyterlab-git", marker = "sys_platform == 'linux' or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm')" }, + { name = "jupyterlab-lsp", marker = "sys_platform == 'linux' or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm')" }, + { name = "jupyterlab-widgets", marker = "sys_platform == 'linux' or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm')" }, + { name = "kafka-python-ng", marker = "sys_platform == 'linux' or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm')" }, + { name = "kfp", marker = "sys_platform == 'linux' or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm')" }, + { name = "kubeflow-training", marker = "sys_platform == 'linux' or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm')" }, + { name = "matplotlib", version = "3.10.3", source = { registry = "https://pypi.org/simple" }, marker = "sys_platform == 'linux' or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm')" }, + { name = "mysql-connector-python", marker = "sys_platform == 'linux' or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm')" }, + { name = "nbdime", marker = "sys_platform == 'linux' or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm')" }, + { name = "nbgitpuller", marker = "sys_platform == 'linux' or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm')" }, + { name = "numpy", version = "2.2.6", source = { registry = "https://pypi.org/simple" }, marker = "sys_platform == 'linux' or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm')" }, + { name = "odh-elyra", marker = "sys_platform == 'linux' or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm')" }, + { name = "onnxconverter-common", marker = "sys_platform == 'linux' or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm')" }, + { name = "pandas", version = "2.2.3", source = { registry = "https://pypi.org/simple" }, marker = "sys_platform == 'linux' or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm')" }, + { name = "plotly", marker = "sys_platform == 'linux' or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm')" }, + { name = "psycopg", marker = "sys_platform == 'linux' or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm')" }, + { name = "pymongo", marker = "sys_platform == 'linux' or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm')" }, + { name = "pyodbc", marker = "sys_platform == 'linux' or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm')" }, + { name = "scikit-learn", version = "1.6.1", source = { registry = "https://pypi.org/simple" }, marker = "sys_platform == 'linux' or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm')" }, + { name = "scipy", marker = "sys_platform == 'linux' or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm')" }, + { name = "setuptools", marker = "sys_platform == 'linux' or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm')" }, + { name = "skl2onnx", marker = "sys_platform == 'linux' or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm')" }, + { name = "wheel", marker = "sys_platform == 'linux' or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm')" }, +] +jupyter-minimal-image = [ + { name = "jupyter-server", marker = "sys_platform == 'linux' or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai')" }, + { name = "jupyter-server-proxy", marker = "sys_platform == 'linux' or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai')" }, + { name = "jupyter-server-terminals", marker = "sys_platform == 'linux' or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai')" }, + { name = "jupyterlab", marker = "sys_platform == 'linux' or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai')" }, + { name = "jupyterlab-git", marker = "sys_platform == 'linux' or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai')" }, + { name = "nbdime", marker = "sys_platform == 'linux' or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai')" }, + { name = "nbgitpuller", marker = "sys_platform == 'linux' or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai')" }, + { name = "setuptools", marker = "sys_platform == 'linux' or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai')" }, + { name = "wheel", marker = "sys_platform == 'linux' or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai')" }, +] +jupyter-pytorch-image = [ + { name = "boto3", marker = "sys_platform == 'linux'" }, + { name = "codeflare-sdk", marker = "sys_platform == 'linux'" }, + { name = "jupyter-bokeh", version = "4.0.5", source = { registry = "https://pypi.org/simple" }, marker = "sys_platform == 'linux'" }, + { name = "jupyter-resource-usage", marker = "sys_platform == 'linux'" }, + { name = "jupyter-server", marker = "sys_platform == 'linux'" }, + { name = "jupyter-server-proxy", marker = "sys_platform == 'linux'" }, + { name = "jupyter-server-terminals", marker = "sys_platform == 'linux'" }, + { name = "jupyterlab", marker = "sys_platform == 'linux'" }, + { name = "jupyterlab-git", marker = "sys_platform == 'linux'" }, + { name = "jupyterlab-lsp", marker = "sys_platform == 'linux'" }, + { name = "jupyterlab-widgets", marker = "sys_platform == 'linux'" }, + { name = "kafka-python-ng", marker = "sys_platform == 'linux'" }, + { name = "kfp", marker = "sys_platform == 'linux'" }, + { name = "kubeflow-training", marker = "sys_platform == 'linux'" }, + { name = "matplotlib", version = "3.10.3", source = { registry = "https://pypi.org/simple" }, marker = "sys_platform == 'linux'" }, + { name = "mysql-connector-python", marker = "sys_platform == 'linux'" }, + { name = "nbdime", marker = "sys_platform == 'linux'" }, + { name = "nbgitpuller", marker = "sys_platform == 'linux'" }, + { name = "numpy", version = "2.2.6", source = { registry = "https://pypi.org/simple" }, marker = "sys_platform == 'linux'" }, + { name = "odh-elyra", marker = "sys_platform == 'linux'" }, + { name = "onnxconverter-common", marker = "sys_platform == 'linux'" }, + { name = "pandas", version = "2.2.3", source = { registry = "https://pypi.org/simple" }, marker = "sys_platform == 'linux'" }, + { name = "plotly", marker = "sys_platform == 'linux'" }, + { name = "psycopg", marker = "sys_platform == 'linux'" }, + { name = "pymongo", marker = "sys_platform == 'linux'" }, + { name = "pyodbc", marker = "sys_platform == 'linux'" }, + { name = "scikit-learn", version = "1.6.1", source = { registry = "https://pypi.org/simple" }, marker = "sys_platform == 'linux'" }, + { name = "scipy", marker = "sys_platform == 'linux'" }, + { name = "setuptools", marker = "sys_platform == 'linux'" }, + { name = "skl2onnx", marker = "sys_platform == 'linux'" }, + { name = "tensorboard", version = "2.19.0", source = { registry = "https://pypi.org/simple" }, marker = "sys_platform == 'linux'" }, + { name = "torch", version = "2.6.0", source = { registry = "https://pypi.org/simple" }, marker = "(sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-trustyai') or (sys_platform == 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai')" }, + { name = "torch", version = "2.6.0+cu126", source = { registry = "https://download.pytorch.org/whl/cu126" }, marker = "(sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-trustyai') or (sys_platform == 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai')" }, + { name = "torchvision", version = "0.21.0", source = { registry = "https://download.pytorch.org/whl/cu126" }, marker = "(platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchcuda') or (platform_machine != 'aarch64' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-tensorflowcuda') or (platform_machine != 'aarch64' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-tensorflowrocm') or (platform_machine != 'aarch64' and extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-tensorflowcuda') or (platform_machine != 'aarch64' and extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-trustyai') or (platform_machine != 'aarch64' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-trustyai') or (platform_machine != 'aarch64' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowcuda') or (platform_machine != 'aarch64' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowrocm') or (platform_machine != 'aarch64' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-trustyai') or (platform_machine != 'aarch64' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm') or (platform_machine != 'aarch64' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowcuda') or (platform_machine != 'aarch64' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowrocm') or (platform_machine != 'aarch64' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-trustyai') or (platform_machine != 'aarch64' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (platform_machine != 'aarch64' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (platform_machine != 'aarch64' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (platform_machine != 'aarch64' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (platform_machine != 'aarch64' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (platform_machine != 'aarch64' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (platform_machine != 'aarch64' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (platform_machine != 'aarch64' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (platform_machine != 'aarch64' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-trustyai') or (platform_machine != 'aarch64' and extra == 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai')" }, + { name = "torchvision", version = "0.21.0", source = { registry = "https://pypi.org/simple" }, marker = "(sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-trustyai') or (sys_platform == 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai')" }, + { name = "torchvision", version = "0.21.0+cu126", source = { registry = "https://download.pytorch.org/whl/cu126" }, marker = "(platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchcuda') or (platform_machine == 'aarch64' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm') or (platform_machine == 'aarch64' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowcuda') or (platform_machine == 'aarch64' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowrocm') or (platform_machine == 'aarch64' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-trustyai') or (platform_machine != 'aarch64' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (platform_machine != 'aarch64' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (platform_machine != 'aarch64' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (platform_machine != 'aarch64' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (platform_machine != 'aarch64' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (platform_machine != 'aarch64' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (platform_machine != 'aarch64' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (platform_machine != 'aarch64' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (platform_machine != 'aarch64' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (platform_machine != 'aarch64' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (platform_machine != 'aarch64' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (platform_machine != 'aarch64' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (platform_machine != 'aarch64' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (platform_machine != 'aarch64' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (platform_machine != 'aarch64' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (platform_machine != 'aarch64' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (platform_machine != 'aarch64' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-trustyai') or (platform_machine != 'aarch64' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai')" }, + { name = "wheel", marker = "sys_platform == 'linux'" }, +] +jupyter-pytorch-rocm-image = [ + { name = "boto3", marker = "sys_platform == 'linux'" }, + { name = "codeflare-sdk", marker = "sys_platform == 'linux'" }, + { name = "jupyter-bokeh", version = "4.0.5", source = { registry = "https://pypi.org/simple" }, marker = "sys_platform == 'linux'" }, + { name = "jupyter-resource-usage", marker = "sys_platform == 'linux'" }, + { name = "jupyter-server", marker = "sys_platform == 'linux'" }, + { name = "jupyter-server-proxy", marker = "sys_platform == 'linux'" }, + { name = "jupyter-server-terminals", marker = "sys_platform == 'linux'" }, + { name = "jupyterlab", marker = "sys_platform == 'linux'" }, + { name = "jupyterlab-git", marker = "sys_platform == 'linux'" }, + { name = "jupyterlab-lsp", marker = "sys_platform == 'linux'" }, + { name = "jupyterlab-widgets", marker = "sys_platform == 'linux'" }, + { name = "kafka-python-ng", marker = "sys_platform == 'linux'" }, + { name = "kfp", marker = "sys_platform == 'linux'" }, + { name = "kubeflow-training", marker = "sys_platform == 'linux'" }, + { name = "matplotlib", version = "3.10.3", source = { registry = "https://pypi.org/simple" }, marker = "sys_platform == 'linux'" }, + { name = "mysql-connector-python", marker = "sys_platform == 'linux'" }, + { name = "nbdime", marker = "sys_platform == 'linux'" }, + { name = "nbgitpuller", marker = "sys_platform == 'linux'" }, + { name = "numpy", version = "2.2.6", source = { registry = "https://pypi.org/simple" }, marker = "sys_platform == 'linux'" }, + { name = "odh-elyra", marker = "sys_platform == 'linux'" }, + { name = "onnxconverter-common", marker = "sys_platform == 'linux'" }, + { name = "pandas", version = "2.2.3", source = { registry = "https://pypi.org/simple" }, marker = "sys_platform == 'linux'" }, + { name = "plotly", marker = "sys_platform == 'linux'" }, + { name = "psycopg", marker = "sys_platform == 'linux'" }, + { name = "pymongo", marker = "sys_platform == 'linux'" }, + { name = "pyodbc", marker = "sys_platform == 'linux'" }, + { name = "pytorch-triton-rocm", marker = "sys_platform == 'linux'" }, + { name = "scikit-learn", version = "1.6.1", source = { registry = "https://pypi.org/simple" }, marker = "sys_platform == 'linux'" }, + { name = "scipy", marker = "sys_platform == 'linux'" }, + { name = "setuptools", marker = "sys_platform == 'linux'" }, + { name = "skl2onnx", marker = "sys_platform == 'linux'" }, + { name = "tensorboard", version = "2.18.0", source = { registry = "https://pypi.org/simple" }, marker = "sys_platform == 'linux'" }, + { name = "torch", version = "2.6.0", source = { registry = "https://pypi.org/simple" }, marker = "(sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-trustyai') or (sys_platform == 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai')" }, + { name = "torch", version = "2.6.0+rocm6.2.4", source = { registry = "https://download.pytorch.org/whl/rocm6.2.4" }, marker = "(sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-trustyai') or (sys_platform == 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai')" }, + { name = "torchvision", version = "0.21.0", source = { registry = "https://pypi.org/simple" }, marker = "(sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-trustyai') or (sys_platform == 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai')" }, + { name = "torchvision", version = "0.21.0+rocm6.2.4", source = { registry = "https://download.pytorch.org/whl/rocm6.2.4" }, marker = "(sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-trustyai') or (sys_platform == 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai')" }, + { name = "wheel", marker = "sys_platform == 'linux'" }, +] +jupyter-tensorflow-image = [ + { name = "boto3", marker = "sys_platform == 'linux'" }, + { name = "codeflare-sdk", marker = "sys_platform == 'linux'" }, + { name = "jupyter-bokeh", version = "4.0.5", source = { registry = "https://pypi.org/simple" }, marker = "sys_platform == 'linux'" }, + { name = "jupyter-resource-usage", marker = "sys_platform == 'linux'" }, + { name = "jupyter-server", marker = "sys_platform == 'linux'" }, + { name = "jupyter-server-proxy", marker = "sys_platform == 'linux'" }, + { name = "jupyter-server-terminals", marker = "sys_platform == 'linux'" }, + { name = "jupyterlab", marker = "sys_platform == 'linux'" }, + { name = "jupyterlab-git", marker = "sys_platform == 'linux'" }, + { name = "jupyterlab-lsp", marker = "sys_platform == 'linux'" }, + { name = "jupyterlab-widgets", marker = "sys_platform == 'linux'" }, + { name = "kafka-python-ng", marker = "sys_platform == 'linux'" }, + { name = "kfp", marker = "sys_platform == 'linux'" }, + { name = "kubeflow-training", marker = "sys_platform == 'linux'" }, + { name = "matplotlib", version = "3.10.3", source = { registry = "https://pypi.org/simple" }, marker = "sys_platform == 'linux'" }, + { name = "mysql-connector-python", marker = "sys_platform == 'linux'" }, + { name = "nbdime", marker = "sys_platform == 'linux'" }, + { name = "nbgitpuller", marker = "sys_platform == 'linux'" }, + { name = "numpy", version = "1.26.4", source = { registry = "https://pypi.org/simple" }, marker = "sys_platform == 'linux'" }, + { name = "odh-elyra", marker = "sys_platform == 'linux'" }, + { name = "onnxconverter-common", marker = "sys_platform == 'linux'" }, + { name = "pandas", version = "2.2.3", source = { registry = "https://pypi.org/simple" }, marker = "sys_platform == 'linux'" }, + { name = "plotly", marker = "sys_platform == 'linux'" }, + { name = "psycopg", marker = "sys_platform == 'linux'" }, + { name = "pymongo", marker = "sys_platform == 'linux'" }, + { name = "pyodbc", marker = "sys_platform == 'linux'" }, + { name = "scikit-learn", version = "1.6.1", source = { registry = "https://pypi.org/simple" }, marker = "sys_platform == 'linux'" }, + { name = "scipy", marker = "sys_platform == 'linux'" }, + { name = "setuptools", marker = "sys_platform == 'linux'" }, + { name = "skl2onnx", marker = "sys_platform == 'linux'" }, + { name = "tensorboard", version = "2.18.0", source = { registry = "https://pypi.org/simple" }, marker = "sys_platform == 'linux'" }, + { name = "tensorflow", extra = ["and-cuda"], marker = "(sys_platform == 'linux' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai')" }, + { name = "tf2onnx", marker = "sys_platform == 'linux'" }, + { name = "wheel", marker = "sys_platform == 'linux'" }, +] +jupyter-tensorflow-rocm-image = [ + { name = "boto3", marker = "sys_platform == 'linux'" }, + { name = "codeflare-sdk", marker = "sys_platform == 'linux'" }, + { name = "jupyter-bokeh", version = "4.0.5", source = { registry = "https://pypi.org/simple" }, marker = "sys_platform == 'linux'" }, + { name = "jupyter-resource-usage", marker = "sys_platform == 'linux'" }, + { name = "jupyter-server", marker = "sys_platform == 'linux'" }, + { name = "jupyter-server-proxy", marker = "sys_platform == 'linux'" }, + { name = "jupyter-server-terminals", marker = "sys_platform == 'linux'" }, + { name = "jupyterlab", marker = "sys_platform == 'linux'" }, + { name = "jupyterlab-git", marker = "sys_platform == 'linux'" }, + { name = "jupyterlab-lsp", marker = "sys_platform == 'linux'" }, + { name = "jupyterlab-widgets", marker = "sys_platform == 'linux'" }, + { name = "kafka-python-ng", marker = "sys_platform == 'linux'" }, + { name = "kfp", marker = "sys_platform == 'linux'" }, + { name = "kubeflow-training", marker = "sys_platform == 'linux'" }, + { name = "matplotlib", version = "3.10.3", source = { registry = "https://pypi.org/simple" }, marker = "sys_platform == 'linux'" }, + { name = "mysql-connector-python", marker = "sys_platform == 'linux'" }, + { name = "nbdime", marker = "sys_platform == 'linux'" }, + { name = "nbgitpuller", marker = "sys_platform == 'linux'" }, + { name = "numpy", version = "1.26.4", source = { registry = "https://pypi.org/simple" }, marker = "sys_platform == 'linux'" }, + { name = "odh-elyra", marker = "sys_platform == 'linux'" }, + { name = "onnxconverter-common", marker = "sys_platform == 'linux'" }, + { name = "pandas", version = "2.2.3", source = { registry = "https://pypi.org/simple" }, marker = "sys_platform == 'linux'" }, + { name = "plotly", marker = "sys_platform == 'linux'" }, + { name = "psycopg", marker = "sys_platform == 'linux'" }, + { name = "pymongo", marker = "sys_platform == 'linux'" }, + { name = "pyodbc", marker = "sys_platform == 'linux'" }, + { name = "scikit-learn", version = "1.6.1", source = { registry = "https://pypi.org/simple" }, marker = "sys_platform == 'linux'" }, + { name = "scipy", marker = "sys_platform == 'linux'" }, + { name = "setuptools", marker = "sys_platform == 'linux'" }, + { name = "skl2onnx", marker = "sys_platform == 'linux'" }, + { name = "tensorboard", version = "2.14.1", source = { registry = "https://pypi.org/simple" }, marker = "sys_platform == 'linux'" }, + { name = "tensorflow-rocm", marker = "sys_platform == 'linux'" }, + { name = "tf2onnx", marker = "sys_platform == 'linux'" }, + { name = "wheel", marker = "sys_platform == 'linux'" }, +] +jupyter-trustyai-image = [ + { name = "accelerate", marker = "sys_platform == 'linux'" }, + { name = "boto3", marker = "sys_platform == 'linux'" }, + { name = "codeflare-sdk", marker = "sys_platform == 'linux'" }, + { name = "datasets", marker = "sys_platform == 'linux'" }, + { name = "jupyter-bokeh", version = "3.0.7", source = { registry = "https://pypi.org/simple" }, marker = "sys_platform == 'linux'" }, + { name = "jupyter-resource-usage", marker = "sys_platform == 'linux'" }, + { name = "jupyter-server", marker = "sys_platform == 'linux'" }, + { name = "jupyter-server-proxy", marker = "sys_platform == 'linux'" }, + { name = "jupyter-server-terminals", marker = "sys_platform == 'linux'" }, + { name = "jupyterlab", marker = "sys_platform == 'linux'" }, + { name = "jupyterlab-git", marker = "sys_platform == 'linux'" }, + { name = "jupyterlab-lsp", marker = "sys_platform == 'linux'" }, + { name = "jupyterlab-widgets", marker = "sys_platform == 'linux'" }, + { name = "kafka-python-ng", marker = "sys_platform == 'linux'" }, + { name = "kfp", marker = "sys_platform == 'linux'" }, + { name = "kubeflow-training", marker = "sys_platform == 'linux'" }, + { name = "matplotlib", version = "3.6.3", source = { registry = "https://pypi.org/simple" }, marker = "sys_platform == 'linux'" }, + { name = "mysql-connector-python", marker = "sys_platform == 'linux'" }, + { name = "nbdime", marker = "sys_platform == 'linux'" }, + { name = "nbgitpuller", marker = "sys_platform == 'linux'" }, + { name = "numpy", version = "1.24.4", source = { registry = "https://pypi.org/simple" }, marker = "sys_platform == 'linux'" }, + { name = "odh-elyra", marker = "sys_platform == 'linux'" }, + { name = "onnxconverter-common", marker = "sys_platform == 'linux'" }, + { name = "pandas", version = "1.5.3", source = { registry = "https://pypi.org/simple" }, marker = "sys_platform == 'linux'" }, + { name = "plotly", marker = "sys_platform == 'linux'" }, + { name = "psycopg", marker = "sys_platform == 'linux'" }, + { name = "pymongo", marker = "sys_platform == 'linux'" }, + { name = "pyodbc", marker = "sys_platform == 'linux'" }, + { name = "scikit-learn", version = "1.2.2", source = { registry = "https://pypi.org/simple" }, marker = "sys_platform == 'linux'" }, + { name = "scipy", marker = "sys_platform == 'linux'" }, + { name = "setuptools", marker = "sys_platform == 'linux'" }, + { name = "skl2onnx", marker = "sys_platform == 'linux'" }, + { name = "torch", version = "2.6.0", source = { registry = "https://pypi.org/simple" }, marker = "sys_platform == 'linux'" }, + { name = "transformers", marker = "sys_platform == 'linux'" }, + { name = "trustyai", marker = "sys_platform == 'linux'" }, + { name = "wheel", marker = "sys_platform == 'linux'" }, +] +pytorchcuda = [ + { name = "tensorboard", version = "2.19.0", source = { registry = "https://pypi.org/simple" }, marker = "sys_platform == 'linux' or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image')" }, + { name = "torch", version = "2.6.0+cu126", source = { registry = "https://download.pytorch.org/whl/cu126" }, marker = "sys_platform == 'linux' or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image')" }, + { name = "torchvision", version = "0.21.0", source = { registry = "https://download.pytorch.org/whl/cu126" }, marker = "(platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-pytorchcuda') or (platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchcuda') or (platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-pytorchcuda') or (platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-pytorchcuda') or (platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-pytorchcuda') or (platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-pytorchcuda') or (platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-pytorchcuda') or (platform_machine != 'aarch64' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-tensorflowcuda') or (platform_machine != 'aarch64' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-tensorflowrocm') or (platform_machine != 'aarch64' and extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-tensorflowcuda') or (platform_machine != 'aarch64' and extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-trustyai') or (platform_machine != 'aarch64' and extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-trustyai') or (platform_machine != 'aarch64' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-tensorflowcuda') or (platform_machine != 'aarch64' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-trustyai') or (platform_machine != 'aarch64' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-trustyai') or (platform_machine != 'aarch64' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowcuda') or (platform_machine != 'aarch64' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowrocm') or (platform_machine != 'aarch64' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-trustyai') or (platform_machine != 'aarch64' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm') or (platform_machine != 'aarch64' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowcuda') or (platform_machine != 'aarch64' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowrocm') or (platform_machine != 'aarch64' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-trustyai') or (platform_machine != 'aarch64' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (platform_machine != 'aarch64' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (platform_machine != 'aarch64' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (platform_machine != 'aarch64' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-trustyai') or (platform_machine != 'aarch64' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (platform_machine != 'aarch64' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (platform_machine != 'aarch64' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (platform_machine != 'aarch64' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (platform_machine != 'aarch64' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (platform_machine != 'aarch64' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (platform_machine != 'aarch64' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (platform_machine != 'aarch64' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (platform_machine != 'aarch64' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-trustyai') or (platform_machine != 'aarch64' and extra == 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchcuda')" }, + { name = "torchvision", version = "0.21.0+cu126", source = { registry = "https://download.pytorch.org/whl/cu126" }, marker = "(platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-pytorchcuda') or (platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchcuda') or (platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-pytorchcuda') or (platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-pytorchcuda') or (platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-pytorchcuda') or (platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-pytorchcuda') or (platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-pytorchcuda') or (platform_machine == 'aarch64' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm') or (platform_machine == 'aarch64' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowcuda') or (platform_machine == 'aarch64' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowrocm') or (platform_machine == 'aarch64' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-trustyai') or (platform_machine != 'aarch64' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (platform_machine != 'aarch64' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (platform_machine != 'aarch64' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (platform_machine != 'aarch64' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (platform_machine != 'aarch64' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (platform_machine != 'aarch64' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (platform_machine != 'aarch64' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (platform_machine != 'aarch64' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (platform_machine != 'aarch64' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (platform_machine != 'aarch64' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (platform_machine != 'aarch64' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (platform_machine != 'aarch64' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (platform_machine != 'aarch64' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (platform_machine != 'aarch64' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (platform_machine != 'aarch64' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (platform_machine != 'aarch64' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (platform_machine != 'aarch64' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-trustyai') or (platform_machine != 'aarch64' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai') or (platform_machine == 'aarch64' and extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (platform_machine == 'aarch64' and extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (platform_machine == 'aarch64' and extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (platform_machine == 'aarch64' and extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (platform_machine == 'aarch64' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (platform_machine == 'aarch64' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (platform_machine == 'aarch64' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (platform_machine == 'aarch64' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (platform_machine == 'aarch64' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (platform_machine == 'aarch64' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (platform_machine == 'aarch64' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (platform_machine == 'aarch64' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (platform_machine == 'aarch64' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (platform_machine == 'aarch64' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (platform_machine == 'aarch64' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (platform_machine == 'aarch64' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (platform_machine == 'aarch64' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (platform_machine == 'aarch64' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (platform_machine == 'aarch64' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (platform_machine == 'aarch64' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (platform_machine == 'aarch64' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (platform_machine == 'aarch64' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (platform_machine == 'aarch64' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (platform_machine == 'aarch64' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (platform_machine == 'aarch64' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (platform_machine == 'aarch64' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (platform_machine == 'aarch64' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (platform_machine == 'aarch64' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (platform_machine == 'aarch64' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (platform_machine == 'aarch64' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (platform_machine == 'aarch64' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchcuda')" }, +] +pytorchrocm = [ + { name = "pytorch-triton-rocm", marker = "sys_platform == 'linux' or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image')" }, + { name = "tensorboard", version = "2.18.0", source = { registry = "https://pypi.org/simple" }, marker = "sys_platform == 'linux' or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image')" }, + { name = "torch", version = "2.6.0+rocm6.2.4", source = { registry = "https://download.pytorch.org/whl/rocm6.2.4" }, marker = "sys_platform == 'linux' or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image')" }, + { name = "torchvision", version = "0.21.0+rocm6.2.4", source = { registry = "https://download.pytorch.org/whl/rocm6.2.4" }, marker = "sys_platform == 'linux' or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image')" }, +] +tensorflowcuda = [ + { name = "tensorboard", version = "2.18.0", source = { registry = "https://pypi.org/simple" }, marker = "sys_platform == 'linux' or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai')" }, + { name = "tensorflow", extra = ["and-cuda"], marker = "(sys_platform == 'linux' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai')" }, + { name = "tf2onnx", marker = "sys_platform == 'linux' or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai')" }, +] +tensorflowrocm = [ + { name = "tensorboard", version = "2.14.1", source = { registry = "https://pypi.org/simple" }, marker = "sys_platform == 'linux' or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai')" }, + { name = "tensorflow-rocm", marker = "sys_platform == 'linux' or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai')" }, + { name = "tf2onnx", marker = "sys_platform == 'linux' or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai')" }, +] +trustyai = [ + { name = "accelerate", marker = "sys_platform == 'linux'" }, + { name = "datasets", marker = "sys_platform == 'linux'" }, + { name = "torch", version = "2.6.0+cu126", source = { registry = "https://download.pytorch.org/whl/cu126" }, marker = "sys_platform == 'linux'" }, + { name = "transformers", marker = "sys_platform == 'linux'" }, + { name = "trustyai", marker = "sys_platform == 'linux'" }, +] + +[package.metadata] + +[package.metadata.requires-dev] +base = [ + { name = "setuptools", specifier = "~=75.8.2" }, + { name = "wheel", specifier = "~=0.45.1" }, +] +datascience-base = [ + { name = "boto3", specifier = "~=1.37.8" }, + { name = "codeflare-sdk", specifier = "~=0.27.0" }, + { name = "kafka-python-ng", specifier = "~=2.2.3" }, + { name = "kfp", specifier = "~=2.12.1" }, + { name = "kubeflow-training", specifier = "==1.9.0" }, + { name = "onnxconverter-common", specifier = "~=1.13.0" }, + { name = "plotly", specifier = "~=6.0.0" }, + { name = "scipy", specifier = "~=1.15.2" }, + { name = "skl2onnx", specifier = "~=1.18.0" }, +] +datascience-preferred = [ + { name = "matplotlib", specifier = "~=3.10.1" }, + { name = "numpy", specifier = "~=2.2.3" }, + { name = "pandas", specifier = "~=2.2.3" }, + { name = "scikit-learn", specifier = "~=1.6.1" }, +] +datascience-tensorflow = [ + { name = "matplotlib", specifier = "~=3.10.1" }, + { name = "numpy", specifier = "~=1.26.4" }, + { name = "pandas", specifier = "~=2.2.3" }, + { name = "scikit-learn", specifier = "~=1.6.1" }, +] +datascience-trustyai = [ + { name = "matplotlib", specifier = "~=3.6.3" }, + { name = "numpy", specifier = "~=1.24.1" }, + { name = "pandas", specifier = "~=1.5.3" }, + { name = "scikit-learn", specifier = "~=1.2.1" }, +] +db-connectors = [ + { name = "mysql-connector-python", specifier = "~=9.2.0" }, + { name = "psycopg", specifier = "~=3.2.5" }, + { name = "pymongo", specifier = "~=4.11.2" }, + { name = "pyodbc", specifier = "~=5.2.0" }, +] +dev = [ + { name = "allure-pytest" }, + { name = "docker" }, + { name = "kubernetes" }, + { name = "openshift-python-wrapper" }, + { name = "podman" }, + { name = "pre-commit" }, + { name = "pydantic" }, + { name = "pyfakefs" }, + { name = "pyright" }, + { name = "pytest" }, + { name = "pytest-subtests" }, + { name = "pyyaml" }, + { name = "requests" }, + { name = "ruff" }, + { name = "testcontainers" }, +] +elyra-base = [ + { name = "jupyter-resource-usage", specifier = "~=1.1.1" }, + { name = "jupyterlab-lsp", specifier = "~=5.1.0" }, + { name = "jupyterlab-widgets", specifier = "~=3.0.13" }, + { name = "odh-elyra", specifier = "==4.2.0" }, +] +elyra-preferred = [{ name = "jupyter-bokeh", specifier = "~=4.0.5" }] +elyra-trustyai = [{ name = "jupyter-bokeh", specifier = "~=3.0.5" }] +jupyter-base = [ + { name = "jupyter-server", specifier = "~=2.15.0" }, + { name = "jupyter-server-proxy", specifier = "~=4.4.0" }, + { name = "jupyter-server-terminals", specifier = "~=0.5.3" }, + { name = "jupyterlab", specifier = "==4.2.7" }, + { name = "jupyterlab-git", specifier = "~=0.50.1" }, + { name = "nbdime", specifier = "~=4.0.2" }, + { name = "nbgitpuller", specifier = "~=1.2.2" }, +] +jupyter-datascience-image = [ + { name = "boto3", specifier = "~=1.37.8" }, + { name = "codeflare-sdk", specifier = "~=0.27.0" }, + { name = "jupyter-bokeh", specifier = "~=4.0.5" }, + { name = "jupyter-resource-usage", specifier = "~=1.1.1" }, + { name = "jupyter-server", specifier = "~=2.15.0" }, + { name = "jupyter-server-proxy", specifier = "~=4.4.0" }, + { name = "jupyter-server-terminals", specifier = "~=0.5.3" }, + { name = "jupyterlab", specifier = "==4.2.7" }, + { name = "jupyterlab-git", specifier = "~=0.50.1" }, + { name = "jupyterlab-lsp", specifier = "~=5.1.0" }, + { name = "jupyterlab-widgets", specifier = "~=3.0.13" }, + { name = "kafka-python-ng", specifier = "~=2.2.3" }, + { name = "kfp", specifier = "~=2.12.1" }, + { name = "kubeflow-training", specifier = "==1.9.0" }, + { name = "matplotlib", specifier = "~=3.10.1" }, + { name = "mysql-connector-python", specifier = "~=9.2.0" }, + { name = "nbdime", specifier = "~=4.0.2" }, + { name = "nbgitpuller", specifier = "~=1.2.2" }, + { name = "numpy", specifier = "~=2.2.3" }, + { name = "odh-elyra", specifier = "==4.2.0" }, + { name = "onnxconverter-common", specifier = "~=1.13.0" }, + { name = "pandas", specifier = "~=2.2.3" }, + { name = "plotly", specifier = "~=6.0.0" }, + { name = "psycopg", specifier = "~=3.2.5" }, + { name = "pymongo", specifier = "~=4.11.2" }, + { name = "pyodbc", specifier = "~=5.2.0" }, + { name = "scikit-learn", specifier = "~=1.6.1" }, + { name = "scipy", specifier = "~=1.15.2" }, + { name = "setuptools", specifier = "~=75.8.2" }, + { name = "skl2onnx", specifier = "~=1.18.0" }, + { name = "wheel", specifier = "~=0.45.1" }, +] +jupyter-minimal-image = [ + { name = "jupyter-server", specifier = "~=2.15.0" }, + { name = "jupyter-server-proxy", specifier = "~=4.4.0" }, + { name = "jupyter-server-terminals", specifier = "~=0.5.3" }, + { name = "jupyterlab", specifier = "==4.2.7" }, + { name = "jupyterlab-git", specifier = "~=0.50.1" }, + { name = "nbdime", specifier = "~=4.0.2" }, + { name = "nbgitpuller", specifier = "~=1.2.2" }, + { name = "setuptools", specifier = "~=75.8.2" }, + { name = "wheel", specifier = "~=0.45.1" }, +] +jupyter-pytorch-image = [ + { name = "boto3", specifier = "~=1.37.8" }, + { name = "codeflare-sdk", specifier = "~=0.27.0" }, + { name = "jupyter-bokeh", specifier = "~=4.0.5" }, + { name = "jupyter-resource-usage", specifier = "~=1.1.1" }, + { name = "jupyter-server", specifier = "~=2.15.0" }, + { name = "jupyter-server-proxy", specifier = "~=4.4.0" }, + { name = "jupyter-server-terminals", specifier = "~=0.5.3" }, + { name = "jupyterlab", specifier = "==4.2.7" }, + { name = "jupyterlab-git", specifier = "~=0.50.1" }, + { name = "jupyterlab-lsp", specifier = "~=5.1.0" }, + { name = "jupyterlab-widgets", specifier = "~=3.0.13" }, + { name = "kafka-python-ng", specifier = "~=2.2.3" }, + { name = "kfp", specifier = "~=2.12.1" }, + { name = "kubeflow-training", specifier = "==1.9.0" }, + { name = "matplotlib", specifier = "~=3.10.1" }, + { name = "mysql-connector-python", specifier = "~=9.2.0" }, + { name = "nbdime", specifier = "~=4.0.2" }, + { name = "nbgitpuller", specifier = "~=1.2.2" }, + { name = "numpy", specifier = "~=2.2.3" }, + { name = "odh-elyra", specifier = "==4.2.0" }, + { name = "onnxconverter-common", specifier = "~=1.13.0" }, + { name = "pandas", specifier = "~=2.2.3" }, + { name = "plotly", specifier = "~=6.0.0" }, + { name = "psycopg", specifier = "~=3.2.5" }, + { name = "pymongo", specifier = "~=4.11.2" }, + { name = "pyodbc", specifier = "~=5.2.0" }, + { name = "scikit-learn", specifier = "~=1.6.1" }, + { name = "scipy", specifier = "~=1.15.2" }, + { name = "setuptools", specifier = "~=75.8.2" }, + { name = "skl2onnx", specifier = "~=1.18.0" }, + { name = "tensorboard", specifier = "~=2.19.0" }, + { name = "torch", specifier = "==2.6.0" }, + { name = "torchvision", specifier = "==0.21.0" }, + { name = "wheel", specifier = "~=0.45.1" }, +] +jupyter-pytorch-rocm-image = [ + { name = "boto3", specifier = "~=1.37.8" }, + { name = "codeflare-sdk", specifier = "~=0.27.0" }, + { name = "jupyter-bokeh", specifier = "~=4.0.5" }, + { name = "jupyter-resource-usage", specifier = "~=1.1.1" }, + { name = "jupyter-server", specifier = "~=2.15.0" }, + { name = "jupyter-server-proxy", specifier = "~=4.4.0" }, + { name = "jupyter-server-terminals", specifier = "~=0.5.3" }, + { name = "jupyterlab", specifier = "==4.2.7" }, + { name = "jupyterlab-git", specifier = "~=0.50.1" }, + { name = "jupyterlab-lsp", specifier = "~=5.1.0" }, + { name = "jupyterlab-widgets", specifier = "~=3.0.13" }, + { name = "kafka-python-ng", specifier = "~=2.2.3" }, + { name = "kfp", specifier = "~=2.12.1" }, + { name = "kubeflow-training", specifier = "==1.9.0" }, + { name = "matplotlib", specifier = "~=3.10.1" }, + { name = "mysql-connector-python", specifier = "~=9.2.0" }, + { name = "nbdime", specifier = "~=4.0.2" }, + { name = "nbgitpuller", specifier = "~=1.2.2" }, + { name = "numpy", specifier = "~=2.2.3" }, + { name = "odh-elyra", specifier = "==4.2.0" }, + { name = "onnxconverter-common", specifier = "~=1.13.0" }, + { name = "pandas", specifier = "~=2.2.3" }, + { name = "plotly", specifier = "~=6.0.0" }, + { name = "psycopg", specifier = "~=3.2.5" }, + { name = "pymongo", specifier = "~=4.11.2" }, + { name = "pyodbc", specifier = "~=5.2.0" }, + { name = "pytorch-triton-rocm", specifier = "~=3.2.0", index = "https://download.pytorch.org/whl/rocm6.2.4" }, + { name = "scikit-learn", specifier = "~=1.6.1" }, + { name = "scipy", specifier = "~=1.15.2" }, + { name = "setuptools", specifier = "~=75.8.2" }, + { name = "skl2onnx", specifier = "~=1.18.0" }, + { name = "tensorboard", specifier = "~=2.18.0" }, + { name = "torch", specifier = "==2.6.0" }, + { name = "torchvision", specifier = "==0.21.0" }, + { name = "wheel", specifier = "~=0.45.1" }, +] +jupyter-tensorflow-image = [ + { name = "boto3", specifier = "~=1.37.8" }, + { name = "codeflare-sdk", specifier = "~=0.27.0" }, + { name = "jupyter-bokeh", specifier = "~=4.0.5" }, + { name = "jupyter-resource-usage", specifier = "~=1.1.1" }, + { name = "jupyter-server", specifier = "~=2.15.0" }, + { name = "jupyter-server-proxy", specifier = "~=4.4.0" }, + { name = "jupyter-server-terminals", specifier = "~=0.5.3" }, + { name = "jupyterlab", specifier = "==4.2.7" }, + { name = "jupyterlab-git", specifier = "~=0.50.1" }, + { name = "jupyterlab-lsp", specifier = "~=5.1.0" }, + { name = "jupyterlab-widgets", specifier = "~=3.0.13" }, + { name = "kafka-python-ng", specifier = "~=2.2.3" }, + { name = "kfp", specifier = "~=2.12.1" }, + { name = "kubeflow-training", specifier = "==1.9.0" }, + { name = "matplotlib", specifier = "~=3.10.1" }, + { name = "mysql-connector-python", specifier = "~=9.2.0" }, + { name = "nbdime", specifier = "~=4.0.2" }, + { name = "nbgitpuller", specifier = "~=1.2.2" }, + { name = "numpy", specifier = "~=1.26.4" }, + { name = "odh-elyra", specifier = "==4.2.0" }, + { name = "onnxconverter-common", specifier = "~=1.13.0" }, + { name = "pandas", specifier = "~=2.2.3" }, + { name = "plotly", specifier = "~=6.0.0" }, + { name = "psycopg", specifier = "~=3.2.5" }, + { name = "pymongo", specifier = "~=4.11.2" }, + { name = "pyodbc", specifier = "~=5.2.0" }, + { name = "scikit-learn", specifier = "~=1.6.1" }, + { name = "scipy", specifier = "~=1.15.2" }, + { name = "setuptools", specifier = "~=75.8.2" }, + { name = "skl2onnx", specifier = "~=1.18.0" }, + { name = "tensorboard", specifier = "~=2.18.0" }, + { name = "tensorflow", extras = ["and-cuda"], specifier = "~=2.18.0" }, + { name = "tf2onnx", specifier = "~=1.16.1" }, + { name = "wheel", specifier = "~=0.45.1" }, +] +jupyter-tensorflow-rocm-image = [ + { name = "boto3", specifier = "~=1.37.8" }, + { name = "codeflare-sdk", specifier = "~=0.27.0" }, + { name = "jupyter-bokeh", specifier = "~=4.0.5" }, + { name = "jupyter-resource-usage", specifier = "~=1.1.1" }, + { name = "jupyter-server", specifier = "~=2.15.0" }, + { name = "jupyter-server-proxy", specifier = "~=4.4.0" }, + { name = "jupyter-server-terminals", specifier = "~=0.5.3" }, + { name = "jupyterlab", specifier = "==4.2.7" }, + { name = "jupyterlab-git", specifier = "~=0.50.1" }, + { name = "jupyterlab-lsp", specifier = "~=5.1.0" }, + { name = "jupyterlab-widgets", specifier = "~=3.0.13" }, + { name = "kafka-python-ng", specifier = "~=2.2.3" }, + { name = "kfp", specifier = "~=2.12.1" }, + { name = "kubeflow-training", specifier = "==1.9.0" }, + { name = "matplotlib", specifier = "~=3.10.1" }, + { name = "mysql-connector-python", specifier = "~=9.2.0" }, + { name = "nbdime", specifier = "~=4.0.2" }, + { name = "nbgitpuller", specifier = "~=1.2.2" }, + { name = "numpy", specifier = "~=1.26.4" }, + { name = "odh-elyra", specifier = "==4.2.0" }, + { name = "onnxconverter-common", specifier = "~=1.13.0" }, + { name = "pandas", specifier = "~=2.2.3" }, + { name = "plotly", specifier = "~=6.0.0" }, + { name = "psycopg", specifier = "~=3.2.5" }, + { name = "pymongo", specifier = "~=4.11.2" }, + { name = "pyodbc", specifier = "~=5.2.0" }, + { name = "scikit-learn", specifier = "~=1.6.1" }, + { name = "scipy", specifier = "~=1.15.2" }, + { name = "setuptools", specifier = "~=75.8.2" }, + { name = "skl2onnx", specifier = "~=1.18.0" }, + { name = "tensorboard", specifier = "~=2.14.0" }, + { name = "tensorflow-rocm", specifier = "~=2.14.0.600" }, + { name = "tf2onnx", specifier = "~=1.16.1" }, + { name = "wheel", specifier = "~=0.45.1" }, +] +jupyter-trustyai-image = [ + { name = "accelerate", specifier = "~=1.5.2" }, + { name = "boto3", specifier = "~=1.37.8" }, + { name = "codeflare-sdk", specifier = "~=0.27.0" }, + { name = "datasets", specifier = "~=3.4.1" }, + { name = "jupyter-bokeh", specifier = "~=3.0.5" }, + { name = "jupyter-resource-usage", specifier = "~=1.1.1" }, + { name = "jupyter-server", specifier = "~=2.15.0" }, + { name = "jupyter-server-proxy", specifier = "~=4.4.0" }, + { name = "jupyter-server-terminals", specifier = "~=0.5.3" }, + { name = "jupyterlab", specifier = "==4.2.7" }, + { name = "jupyterlab-git", specifier = "~=0.50.1" }, + { name = "jupyterlab-lsp", specifier = "~=5.1.0" }, + { name = "jupyterlab-widgets", specifier = "~=3.0.13" }, + { name = "kafka-python-ng", specifier = "~=2.2.3" }, + { name = "kfp", specifier = "~=2.12.1" }, + { name = "kubeflow-training", specifier = "==1.9.0" }, + { name = "matplotlib", specifier = "~=3.6.3" }, + { name = "mysql-connector-python", specifier = "~=9.2.0" }, + { name = "nbdime", specifier = "~=4.0.2" }, + { name = "nbgitpuller", specifier = "~=1.2.2" }, + { name = "numpy", specifier = "~=1.24.1" }, + { name = "odh-elyra", specifier = "==4.2.0" }, + { name = "onnxconverter-common", specifier = "~=1.13.0" }, + { name = "pandas", specifier = "~=1.5.3" }, + { name = "plotly", specifier = "~=6.0.0" }, + { name = "psycopg", specifier = "~=3.2.5" }, + { name = "pymongo", specifier = "~=4.11.2" }, + { name = "pyodbc", specifier = "~=5.2.0" }, + { name = "scikit-learn", specifier = "~=1.2.1" }, + { name = "scipy", specifier = "~=1.15.2" }, + { name = "setuptools", specifier = "~=75.8.2" }, + { name = "skl2onnx", specifier = "~=1.18.0" }, + { name = "torch", specifier = "==2.6.0" }, + { name = "transformers", specifier = "~=4.49.0" }, + { name = "trustyai", specifier = "~=0.6.1" }, + { name = "wheel", specifier = "~=0.45.1" }, +] +pytorchcuda = [ + { name = "tensorboard", specifier = "~=2.19.0" }, + { name = "torch", specifier = "==2.6.0", index = "https://download.pytorch.org/whl/cu126", conflict = { package = "notebooks", group = "pytorchcuda" } }, + { name = "torchvision", specifier = "==0.21.0", index = "https://download.pytorch.org/whl/cu126", conflict = { package = "notebooks", group = "pytorchcuda" } }, +] +pytorchrocm = [ + { name = "pytorch-triton-rocm", specifier = "~=3.2.0", index = "https://download.pytorch.org/whl/rocm6.2.4" }, + { name = "tensorboard", specifier = "~=2.18.0" }, + { name = "torch", specifier = "==2.6.0", index = "https://download.pytorch.org/whl/rocm6.2.4", conflict = { package = "notebooks", group = "pytorchrocm" } }, + { name = "torchvision", specifier = "==0.21.0", index = "https://download.pytorch.org/whl/rocm6.2.4", conflict = { package = "notebooks", group = "pytorchrocm" } }, +] +tensorflowcuda = [ + { name = "tensorboard", specifier = "~=2.18.0" }, + { name = "tensorflow", extras = ["and-cuda"], specifier = "~=2.18.0" }, + { name = "tf2onnx", specifier = "~=1.16.1" }, +] +tensorflowrocm = [ + { name = "tensorboard", specifier = "~=2.14.0" }, + { name = "tensorflow-rocm", specifier = "~=2.14.0.600" }, + { name = "tf2onnx", specifier = "~=1.16.1" }, +] +trustyai = [ + { name = "accelerate", specifier = "~=1.5.2" }, + { name = "datasets", specifier = "~=3.4.1" }, + { name = "torch", specifier = "==2.6.0", index = "https://download.pytorch.org/whl/cu126", conflict = { package = "notebooks", group = "trustyai" } }, + { name = "transformers", specifier = "~=4.49.0" }, + { name = "trustyai", specifier = "~=0.6.1" }, +] + +[[package]] +name = "numpy" +version = "1.24.4" +source = { registry = "https://pypi.org/simple" } +resolution-markers = [ + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", +] +sdist = { url = "https://files.pythonhosted.org/packages/a4/9b/027bec52c633f6556dba6b722d9a0befb40498b9ceddd29cbe67a45a127c/numpy-1.24.4.tar.gz", hash = "sha256:80f5e3a4e498641401868df4208b74581206afbee7cf7b8329daae82676d9463", size = 10911229, upload-time = "2023-06-26T13:39:33.218Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/a9/cc/5ed2280a27e5dab12994c884f1f4d8c3bd4d885d02ae9e52a9d213a6a5e2/numpy-1.24.4-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:f136bab9c2cfd8da131132c2cf6cc27331dd6fae65f95f69dcd4ae3c3639c810", size = 19775508, upload-time = "2023-06-26T13:25:08.882Z" }, + { url = "https://files.pythonhosted.org/packages/c0/bc/77635c657a3668cf652806210b8662e1aff84b818a55ba88257abf6637a8/numpy-1.24.4-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:e2926dac25b313635e4d6cf4dc4e51c8c0ebfed60b801c799ffc4c32bf3d1254", size = 13840033, upload-time = "2023-06-26T13:25:33.417Z" }, + { url = "https://files.pythonhosted.org/packages/a7/4c/96cdaa34f54c05e97c1c50f39f98d608f96f0677a6589e64e53104e22904/numpy-1.24.4-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:222e40d0e2548690405b0b3c7b21d1169117391c2e82c378467ef9ab4c8f0da7", size = 13991951, upload-time = "2023-06-26T13:25:55.725Z" }, + { url = "https://files.pythonhosted.org/packages/22/97/dfb1a31bb46686f09e68ea6ac5c63fdee0d22d7b23b8f3f7ea07712869ef/numpy-1.24.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:7215847ce88a85ce39baf9e89070cb860c98fdddacbaa6c0da3ffb31b3350bd5", size = 17278923, upload-time = "2023-06-26T13:26:25.658Z" }, + { url = "https://files.pythonhosted.org/packages/35/e2/76a11e54139654a324d107da1d98f99e7aa2a7ef97cfd7c631fba7dbde71/numpy-1.24.4-cp311-cp311-win32.whl", hash = "sha256:4979217d7de511a8d57f4b4b5b2b965f707768440c17cb70fbf254c4b225238d", size = 12422446, upload-time = "2023-06-26T13:26:49.302Z" }, + { url = "https://files.pythonhosted.org/packages/d8/ec/ebef2f7d7c28503f958f0f8b992e7ce606fb74f9e891199329d5f5f87404/numpy-1.24.4-cp311-cp311-win_amd64.whl", hash = "sha256:b7b1fc9864d7d39e28f41d089bfd6353cb5f27ecd9905348c24187a768c79694", size = 14834466, upload-time = "2023-06-26T13:27:16.029Z" }, +] + +[[package]] +name = "numpy" +version = "1.26.4" +source = { registry = "https://pypi.org/simple" } +resolution-markers = [ + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", +] +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/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" }, + { url = "https://files.pythonhosted.org/packages/3a/d0/edc009c27b406c4f9cbc79274d6e46d634d139075492ad055e3d68445925/numpy-1.26.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:666dbfb6ec68962c033a450943ded891bed2d54e6755e35e5835d63f4f6931d5", size = 18252005, upload-time = "2024-02-05T23:53:15.637Z" }, + { url = "https://files.pythonhosted.org/packages/09/bf/2b1aaf8f525f2923ff6cfcf134ae5e750e279ac65ebf386c75a0cf6da06a/numpy-1.26.4-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:96ff0b2ad353d8f990b63294c8986f1ec3cb19d749234014f4e7eb0112ceba5a", size = 13885297, upload-time = "2024-02-05T23:53:42.16Z" }, + { url = "https://files.pythonhosted.org/packages/df/a0/4e0f14d847cfc2a633a1c8621d00724f3206cfeddeb66d35698c4e2cf3d2/numpy-1.26.4-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:60dedbb91afcbfdc9bc0b1f3f402804070deed7392c23eb7a7f07fa857868e8a", size = 18093567, upload-time = "2024-02-05T23:54:11.696Z" }, + { url = "https://files.pythonhosted.org/packages/d2/b7/a734c733286e10a7f1a8ad1ae8c90f2d33bf604a96548e0a4a3a6739b468/numpy-1.26.4-cp311-cp311-win32.whl", hash = "sha256:1af303d6b2210eb850fcf03064d364652b7120803a0b872f5211f5234b399f20", size = 5968812, upload-time = "2024-02-05T23:54:26.453Z" }, + { url = "https://files.pythonhosted.org/packages/3f/6b/5610004206cf7f8e7ad91c5a85a8c71b2f2f8051a0c0c4d5916b76d6cbb2/numpy-1.26.4-cp311-cp311-win_amd64.whl", hash = "sha256:cd25bcecc4974d09257ffcd1f098ee778f7834c3ad767fe5db785be9a4aa9cb2", size = 15811913, upload-time = "2024-02-05T23:54:53.933Z" }, + { url = "https://files.pythonhosted.org/packages/95/12/8f2020a8e8b8383ac0177dc9570aad031a3beb12e38847f7129bacd96228/numpy-1.26.4-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:b3ce300f3644fb06443ee2222c2201dd3a89ea6040541412b8fa189341847218", size = 20335901, upload-time = "2024-02-05T23:55:32.801Z" }, + { url = "https://files.pythonhosted.org/packages/75/5b/ca6c8bd14007e5ca171c7c03102d17b4f4e0ceb53957e8c44343a9546dcc/numpy-1.26.4-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:03a8c78d01d9781b28a6989f6fa1bb2c4f2d51201cf99d3dd875df6fbd96b23b", size = 13685868, upload-time = "2024-02-05T23:55:56.28Z" }, + { url = "https://files.pythonhosted.org/packages/79/f8/97f10e6755e2a7d027ca783f63044d5b1bc1ae7acb12afe6a9b4286eac17/numpy-1.26.4-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:9fad7dcb1aac3c7f0584a5a8133e3a43eeb2fe127f47e3632d43d677c66c102b", size = 13925109, upload-time = "2024-02-05T23:56:20.368Z" }, + { url = "https://files.pythonhosted.org/packages/0f/50/de23fde84e45f5c4fda2488c759b69990fd4512387a8632860f3ac9cd225/numpy-1.26.4-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:675d61ffbfa78604709862923189bad94014bef562cc35cf61d3a07bba02a7ed", size = 17950613, upload-time = "2024-02-05T23:56:56.054Z" }, + { url = "https://files.pythonhosted.org/packages/4c/0c/9c603826b6465e82591e05ca230dfc13376da512b25ccd0894709b054ed0/numpy-1.26.4-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:ab47dbe5cc8210f55aa58e4805fe224dac469cde56b9f731a4c098b91917159a", size = 13572172, upload-time = "2024-02-05T23:57:21.56Z" }, + { url = "https://files.pythonhosted.org/packages/76/8c/2ba3902e1a0fc1c74962ea9bb33a534bb05984ad7ff9515bf8d07527cadd/numpy-1.26.4-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:1dda2e7b4ec9dd512f84935c5f126c8bd8b9f2fc001e9f54af255e8c5f16b0e0", size = 17786643, upload-time = "2024-02-05T23:57:56.585Z" }, + { url = "https://files.pythonhosted.org/packages/28/4a/46d9e65106879492374999e76eb85f87b15328e06bd1550668f79f7b18c6/numpy-1.26.4-cp312-cp312-win32.whl", hash = "sha256:50193e430acfc1346175fcbdaa28ffec49947a06918b7b92130744e81e640110", size = 5677803, upload-time = "2024-02-05T23:58:08.963Z" }, + { url = "https://files.pythonhosted.org/packages/16/2e/86f24451c2d530c88daf997cb8d6ac622c1d40d19f5a031ed68a4b73a374/numpy-1.26.4-cp312-cp312-win_amd64.whl", hash = "sha256:08beddf13648eb95f8d867350f6a018a4be2e5ad54c8d8caed89ebca558b2818", size = 15517754, upload-time = "2024-02-05T23:58:36.364Z" }, +] + +[[package]] +name = "numpy" +version = "2.2.6" +source = { registry = "https://pypi.org/simple" } +resolution-markers = [ + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", +] +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/da/a8/4f83e2aa666a9fbf56d6118faaaf5f1974d456b1823fda0a176eff722839/numpy-2.2.6-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:f9f1adb22318e121c5c69a09142811a201ef17ab257a1e66ca3025065b7f53ae", size = 21176963, upload-time = "2025-05-17T21:31:19.36Z" }, + { url = "https://files.pythonhosted.org/packages/b3/2b/64e1affc7972decb74c9e29e5649fac940514910960ba25cd9af4488b66c/numpy-2.2.6-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:c820a93b0255bc360f53eca31a0e676fd1101f673dda8da93454a12e23fc5f7a", size = 14406743, upload-time = "2025-05-17T21:31:41.087Z" }, + { url = "https://files.pythonhosted.org/packages/4a/9f/0121e375000b5e50ffdd8b25bf78d8e1a5aa4cca3f185d41265198c7b834/numpy-2.2.6-cp311-cp311-macosx_14_0_arm64.whl", hash = "sha256:3d70692235e759f260c3d837193090014aebdf026dfd167834bcba43e30c2a42", size = 5352616, upload-time = "2025-05-17T21:31:50.072Z" }, + { url = "https://files.pythonhosted.org/packages/31/0d/b48c405c91693635fbe2dcd7bc84a33a602add5f63286e024d3b6741411c/numpy-2.2.6-cp311-cp311-macosx_14_0_x86_64.whl", hash = "sha256:481b49095335f8eed42e39e8041327c05b0f6f4780488f61286ed3c01368d491", size = 6889579, upload-time = "2025-05-17T21:32:01.712Z" }, + { url = "https://files.pythonhosted.org/packages/52/b8/7f0554d49b565d0171eab6e99001846882000883998e7b7d9f0d98b1f934/numpy-2.2.6-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b64d8d4d17135e00c8e346e0a738deb17e754230d7e0810ac5012750bbd85a5a", size = 14312005, upload-time = "2025-05-17T21:32:23.332Z" }, + { url = "https://files.pythonhosted.org/packages/b3/dd/2238b898e51bd6d389b7389ffb20d7f4c10066d80351187ec8e303a5a475/numpy-2.2.6-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ba10f8411898fc418a521833e014a77d3ca01c15b0c6cdcce6a0d2897e6dbbdf", size = 16821570, upload-time = "2025-05-17T21:32:47.991Z" }, + { url = "https://files.pythonhosted.org/packages/83/6c/44d0325722cf644f191042bf47eedad61c1e6df2432ed65cbe28509d404e/numpy-2.2.6-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:bd48227a919f1bafbdda0583705e547892342c26fb127219d60a5c36882609d1", size = 15818548, upload-time = "2025-05-17T21:33:11.728Z" }, + { url = "https://files.pythonhosted.org/packages/ae/9d/81e8216030ce66be25279098789b665d49ff19eef08bfa8cb96d4957f422/numpy-2.2.6-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:9551a499bf125c1d4f9e250377c1ee2eddd02e01eac6644c080162c0c51778ab", size = 18620521, upload-time = "2025-05-17T21:33:39.139Z" }, + { url = "https://files.pythonhosted.org/packages/6a/fd/e19617b9530b031db51b0926eed5345ce8ddc669bb3bc0044b23e275ebe8/numpy-2.2.6-cp311-cp311-win32.whl", hash = "sha256:0678000bb9ac1475cd454c6b8c799206af8107e310843532b04d49649c717a47", size = 6525866, upload-time = "2025-05-17T21:33:50.273Z" }, + { url = "https://files.pythonhosted.org/packages/31/0a/f354fb7176b81747d870f7991dc763e157a934c717b67b58456bc63da3df/numpy-2.2.6-cp311-cp311-win_amd64.whl", hash = "sha256:e8213002e427c69c45a52bbd94163084025f533a55a59d6f9c5b820774ef3303", size = 12907455, upload-time = "2025-05-17T21:34:09.135Z" }, + { url = "https://files.pythonhosted.org/packages/82/5d/c00588b6cf18e1da539b45d3598d3557084990dcc4331960c15ee776ee41/numpy-2.2.6-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:41c5a21f4a04fa86436124d388f6ed60a9343a6f767fced1a8a71c3fbca038ff", size = 20875348, upload-time = "2025-05-17T21:34:39.648Z" }, + { url = "https://files.pythonhosted.org/packages/66/ee/560deadcdde6c2f90200450d5938f63a34b37e27ebff162810f716f6a230/numpy-2.2.6-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:de749064336d37e340f640b05f24e9e3dd678c57318c7289d222a8a2f543e90c", size = 14119362, upload-time = "2025-05-17T21:35:01.241Z" }, + { url = "https://files.pythonhosted.org/packages/3c/65/4baa99f1c53b30adf0acd9a5519078871ddde8d2339dc5a7fde80d9d87da/numpy-2.2.6-cp312-cp312-macosx_14_0_arm64.whl", hash = "sha256:894b3a42502226a1cac872f840030665f33326fc3dac8e57c607905773cdcde3", size = 5084103, upload-time = "2025-05-17T21:35:10.622Z" }, + { url = "https://files.pythonhosted.org/packages/cc/89/e5a34c071a0570cc40c9a54eb472d113eea6d002e9ae12bb3a8407fb912e/numpy-2.2.6-cp312-cp312-macosx_14_0_x86_64.whl", hash = "sha256:71594f7c51a18e728451bb50cc60a3ce4e6538822731b2933209a1f3614e9282", size = 6625382, upload-time = "2025-05-17T21:35:21.414Z" }, + { url = "https://files.pythonhosted.org/packages/f8/35/8c80729f1ff76b3921d5c9487c7ac3de9b2a103b1cd05e905b3090513510/numpy-2.2.6-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f2618db89be1b4e05f7a1a847a9c1c0abd63e63a1607d892dd54668dd92faf87", size = 14018462, upload-time = "2025-05-17T21:35:42.174Z" }, + { url = "https://files.pythonhosted.org/packages/8c/3d/1e1db36cfd41f895d266b103df00ca5b3cbe965184df824dec5c08c6b803/numpy-2.2.6-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:fd83c01228a688733f1ded5201c678f0c53ecc1006ffbc404db9f7a899ac6249", size = 16527618, upload-time = "2025-05-17T21:36:06.711Z" }, + { url = "https://files.pythonhosted.org/packages/61/c6/03ed30992602c85aa3cd95b9070a514f8b3c33e31124694438d88809ae36/numpy-2.2.6-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:37c0ca431f82cd5fa716eca9506aefcabc247fb27ba69c5062a6d3ade8cf8f49", size = 15505511, upload-time = "2025-05-17T21:36:29.965Z" }, + { url = "https://files.pythonhosted.org/packages/b7/25/5761d832a81df431e260719ec45de696414266613c9ee268394dd5ad8236/numpy-2.2.6-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:fe27749d33bb772c80dcd84ae7e8df2adc920ae8297400dabec45f0dedb3f6de", size = 18313783, upload-time = "2025-05-17T21:36:56.883Z" }, + { url = "https://files.pythonhosted.org/packages/57/0a/72d5a3527c5ebffcd47bde9162c39fae1f90138c961e5296491ce778e682/numpy-2.2.6-cp312-cp312-win32.whl", hash = "sha256:4eeaae00d789f66c7a25ac5f34b71a7035bb474e679f410e5e1a94deb24cf2d4", size = 6246506, upload-time = "2025-05-17T21:37:07.368Z" }, + { url = "https://files.pythonhosted.org/packages/36/fa/8c9210162ca1b88529ab76b41ba02d433fd54fecaf6feb70ef9f124683f1/numpy-2.2.6-cp312-cp312-win_amd64.whl", hash = "sha256:c1f9540be57940698ed329904db803cf7a402f3fc200bfe599334c9bd84a40b2", size = 12614190, upload-time = "2025-05-17T21:37:26.213Z" }, +] + +[[package]] +name = "nvidia-cublas-cu12" +version = "12.4.5.8" +source = { registry = "https://pypi.org/simple" } +resolution-markers = [ + "python_full_version >= '3.12' and sys_platform == 'linux'", + "python_full_version < '3.12' and sys_platform == 'linux'", +] +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" }, + { url = "https://files.pythonhosted.org/packages/ae/71/1c91302526c45ab494c23f61c7a84aa568b8c1f9d196efa5993957faf906/nvidia_cublas_cu12-12.4.5.8-py3-none-manylinux2014_x86_64.whl", hash = "sha256:2fc8da60df463fdefa81e323eef2e36489e1c94335b5358bcb38360adf75ac9b", size = 363438805, upload-time = "2024-04-03T20:57:06.025Z" }, + { url = "https://files.pythonhosted.org/packages/e2/2a/4f27ca96232e8b5269074a72e03b4e0d43aa68c9b965058b1684d07c6ff8/nvidia_cublas_cu12-12.4.5.8-py3-none-win_amd64.whl", hash = "sha256:5a796786da89203a0657eda402bcdcec6180254a8ac22d72213abc42069522dc", size = 396895858, upload-time = "2024-04-03T21:03:31.996Z" }, +] + +[[package]] +name = "nvidia-cublas-cu12" +version = "12.5.3.2" +source = { registry = "https://pypi.org/simple" } +resolution-markers = [ + "python_full_version >= '3.12' and sys_platform == 'linux'", + "python_full_version < '3.12' and sys_platform == 'linux'", +] +wheels = [ + { url = "https://files.pythonhosted.org/packages/8b/41/2520894bccd8506e842b61d912cf96d62a904cdb76f27fdaad53cc563959/nvidia_cublas_cu12-12.5.3.2-py3-none-manylinux2014_aarch64.whl", hash = "sha256:7d0191251180de606023d396b94d66f66470a0ae96d1dbb906c7656ea0f71eda", size = 360965110, upload-time = "2024-07-18T19:35:49.171Z" }, + { url = "https://files.pythonhosted.org/packages/f9/43/a5365b345c989d9f7de2f2406e59b4a792ba3541b5d47edda5031b2730a6/nvidia_cublas_cu12-12.5.3.2-py3-none-manylinux2014_x86_64.whl", hash = "sha256:ca070ad70e9fa6654084575d01bd001f30cc4665e33d4bb9fc8e0f321caa034b", size = 363313169, upload-time = "2024-07-01T16:39:22.863Z" }, + { url = "https://files.pythonhosted.org/packages/50/18/d32d9ea61a6df42b3887b4a8acb6edcf81bd2cf787c8dbf759f1e63f1414/nvidia_cublas_cu12-12.5.3.2-py3-none-win_amd64.whl", hash = "sha256:4960f3dc5f39699acadf76fa6d94b10a2a00f2956c2c442efa299fb22b0748f3", size = 398317116, upload-time = "2024-07-01T16:45:24.985Z" }, +] + +[[package]] +name = "nvidia-cuda-cupti-cu12" +version = "12.4.127" +source = { registry = "https://pypi.org/simple" } +resolution-markers = [ + "python_full_version >= '3.12' and sys_platform == 'linux'", + "python_full_version < '3.12' and sys_platform == 'linux'", +] +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" }, + { url = "https://files.pythonhosted.org/packages/67/42/f4f60238e8194a3106d06a058d494b18e006c10bb2b915655bd9f6ea4cb1/nvidia_cuda_cupti_cu12-12.4.127-py3-none-manylinux2014_x86_64.whl", hash = "sha256:9dec60f5ac126f7bb551c055072b69d85392b13311fcc1bcda2202d172df30fb", size = 13813957, upload-time = "2024-04-03T20:55:01.564Z" }, + { url = "https://files.pythonhosted.org/packages/f3/79/8cf313ec17c58ccebc965568e5bcb265cdab0a1df99c4e674bb7a3b99bfe/nvidia_cuda_cupti_cu12-12.4.127-py3-none-win_amd64.whl", hash = "sha256:5688d203301ab051449a2b1cb6690fbe90d2b372f411521c86018b950f3d7922", size = 9938035, upload-time = "2024-04-03T21:01:01.109Z" }, +] + +[[package]] +name = "nvidia-cuda-cupti-cu12" +version = "12.5.82" +source = { registry = "https://pypi.org/simple" } +resolution-markers = [ + "python_full_version >= '3.12' and sys_platform == 'linux'", + "python_full_version < '3.12' and sys_platform == 'linux'", +] +wheels = [ + { url = "https://files.pythonhosted.org/packages/3f/64/574b075df1c542e900820a1690824e017b7a485eaa12d2282442084c851b/nvidia_cuda_cupti_cu12-12.5.82-py3-none-manylinux2014_aarch64.whl", hash = "sha256:d32c06490c6ba35c4323730820c7d0c4c126c04ed58d2f57275adb8d54b138fe", size = 12380761, upload-time = "2024-07-18T19:34:01.829Z" }, + { url = "https://files.pythonhosted.org/packages/3a/64/81515a1b5872dc0fc817deaec2bdba160dc50188e0d53b907d10c6e6d568/nvidia_cuda_cupti_cu12-12.5.82-py3-none-manylinux2014_x86_64.whl", hash = "sha256:bde77a5feb66752ec61db2adfe47f56b941842825b4c7e2068aff27c9d107953", size = 13811507, upload-time = "2024-07-01T16:37:18.972Z" }, + { url = "https://files.pythonhosted.org/packages/7a/11/56bd2b1e7c12f03bf60f6ac37be3a8c8f020803bee46888d768d94ca7c2f/nvidia_cuda_cupti_cu12-12.5.82-py3-none-win_amd64.whl", hash = "sha256:4f835281cf492e2bedd153f5c3de9da8f1d775a419468305e64ce73b3b0c6dc3", size = 9958004, upload-time = "2024-07-01T16:43:07.67Z" }, +] + +[[package]] +name = "nvidia-cuda-nvcc-cu12" +version = "12.5.82" +source = { registry = "https://pypi.org/simple" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/f8/b5/125368199b6697c160d7fd86fefcccda32d76722d9e1ef15b967379fe613/nvidia_cuda_nvcc_cu12-12.5.82-py3-none-manylinux2014_aarch64.whl", hash = "sha256:ab02fe922cee01235b7950f045042219fe83e15aceb4cd3c1d36db30b034dec7", size = 20519790, upload-time = "2024-07-18T19:34:20.371Z" }, + { url = "https://files.pythonhosted.org/packages/44/cc/36363057676e6140d0bdb07fa6df5419b68203c5cba8c412b5600fd0d105/nvidia_cuda_nvcc_cu12-12.5.82-py3-none-manylinux2014_x86_64.whl", hash = "sha256:b03e545b8e8c3ce7ebcd7fc44063180ff52ff01d064ece2127ed90a04ef12cd0", size = 22468537, upload-time = "2024-07-01T16:37:48.856Z" }, + { url = "https://files.pythonhosted.org/packages/91/c2/8c80e81aa1bb59bf7b1260cc62c1c58759a540331a006d84b96f428c7437/nvidia_cuda_nvcc_cu12-12.5.82-py3-none-win_amd64.whl", hash = "sha256:6eaa264da57a893ae7606dd80b169d9783444af941697822cb82c8379ffc4957", size = 16652983, upload-time = "2024-07-01T16:43:29.247Z" }, +] + +[[package]] +name = "nvidia-cuda-nvrtc-cu12" +version = "12.4.127" +source = { registry = "https://pypi.org/simple" } +resolution-markers = [ + "python_full_version >= '3.12' and sys_platform == 'linux'", + "python_full_version < '3.12' and sys_platform == 'linux'", +] +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" }, + { url = "https://files.pythonhosted.org/packages/2c/14/91ae57cd4db3f9ef7aa99f4019cfa8d54cb4caa7e00975df6467e9725a9f/nvidia_cuda_nvrtc_cu12-12.4.127-py3-none-manylinux2014_x86_64.whl", hash = "sha256:a178759ebb095827bd30ef56598ec182b85547f1508941a3d560eb7ea1fbf338", size = 24640306, upload-time = "2024-04-03T20:56:01.463Z" }, + { url = "https://files.pythonhosted.org/packages/7c/30/8c844bfb770f045bcd8b2c83455c5afb45983e1a8abf0c4e5297b481b6a5/nvidia_cuda_nvrtc_cu12-12.4.127-py3-none-win_amd64.whl", hash = "sha256:a961b2f1d5f17b14867c619ceb99ef6fcec12e46612711bcec78eb05068a60ec", size = 19751955, upload-time = "2024-04-03T21:01:51.133Z" }, +] + +[[package]] +name = "nvidia-cuda-nvrtc-cu12" +version = "12.5.82" +source = { registry = "https://pypi.org/simple" } +resolution-markers = [ + "python_full_version >= '3.12' and sys_platform == 'linux'", + "python_full_version < '3.12' and sys_platform == 'linux'", +] +wheels = [ + { url = "https://files.pythonhosted.org/packages/d0/69/d71d9c9a70a595af5cefb2c99b82da7f2ed300fb2253c0f8918d987d8bff/nvidia_cuda_nvrtc_cu12-12.5.82-py3-none-manylinux2014_aarch64.whl", hash = "sha256:5bb6a0eb01d4974bb7ca3d48bd3859472debb3c3057a5e7de2b08fbdf35eed7e", size = 24349525, upload-time = "2024-07-18T19:34:48.394Z" }, + { url = "https://files.pythonhosted.org/packages/19/d1/342c2bcf6172db65fcbd9102f9941876e730d98977e69c00df85940fa8ce/nvidia_cuda_nvrtc_cu12-12.5.82-py3-none-manylinux2014_x86_64.whl", hash = "sha256:3dbd97b0104b4bfbc3c4f8c79cd2496307c89c43c29a9f83125f1d76296ff3fd", size = 24873108, upload-time = "2024-07-01T16:38:10.656Z" }, + { url = "https://files.pythonhosted.org/packages/46/3f/a45978aeef7d08432c678cd0ca40f56e14e856fd3023d6e5e94bf84ffc8d/nvidia_cuda_nvrtc_cu12-12.5.82-py3-none-win_amd64.whl", hash = "sha256:e5db37e990056c70953b7772dd778336ef9da0a0b5bb28f9f2a61c2e42b51d78", size = 38668073, upload-time = "2024-07-01T16:44:01.193Z" }, +] + +[[package]] +name = "nvidia-cuda-runtime-cu12" +version = "12.4.127" +source = { registry = "https://pypi.org/simple" } +resolution-markers = [ + "python_full_version >= '3.12' and sys_platform == 'linux'", + "python_full_version < '3.12' and sys_platform == 'linux'", +] +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" }, + { url = "https://files.pythonhosted.org/packages/ea/27/1795d86fe88ef397885f2e580ac37628ed058a92ed2c39dc8eac3adf0619/nvidia_cuda_runtime_cu12-12.4.127-py3-none-manylinux2014_x86_64.whl", hash = "sha256:64403288fa2136ee8e467cdc9c9427e0434110899d07c779f25b5c068934faa5", size = 883737, upload-time = "2024-04-03T20:54:51.355Z" }, + { url = "https://files.pythonhosted.org/packages/a8/8b/450e93fab75d85a69b50ea2d5fdd4ff44541e0138db16f9cd90123ef4de4/nvidia_cuda_runtime_cu12-12.4.127-py3-none-win_amd64.whl", hash = "sha256:09c2e35f48359752dfa822c09918211844a3d93c100a715d79b59591130c5e1e", size = 878808, upload-time = "2024-04-03T21:00:49.77Z" }, +] + +[[package]] +name = "nvidia-cuda-runtime-cu12" +version = "12.5.82" +source = { registry = "https://pypi.org/simple" } +resolution-markers = [ + "python_full_version >= '3.12' and sys_platform == 'linux'", + "python_full_version < '3.12' and sys_platform == 'linux'", +] +wheels = [ + { url = "https://files.pythonhosted.org/packages/a3/49/f0a708c50f1a2200fa2ebb76cdbde4eb509341fce5305452023702dfe6ea/nvidia_cuda_runtime_cu12-12.5.82-py3-none-manylinux2014_aarch64.whl", hash = "sha256:71f015dbf9df05dd71f7480132c6ebf47a6ceb2ab53d7db8e08e4b30ebb87e14", size = 906205, upload-time = "2024-07-18T19:33:42.141Z" }, + { url = "https://files.pythonhosted.org/packages/71/05/80f3fe49e9905570bc27aea9493baa1891c3780a7fc4e1f872c7902df066/nvidia_cuda_runtime_cu12-12.5.82-py3-none-manylinux2014_x86_64.whl", hash = "sha256:3e79a060e126df40fd3a068f3f787eb000fa51b251ec6cd97d09579632687115", size = 895707, upload-time = "2024-07-01T16:37:08.343Z" }, + { url = "https://files.pythonhosted.org/packages/e0/86/f1d75289fddaffafe6ff80e620807319b856859d83cbceda05827c0723e3/nvidia_cuda_runtime_cu12-12.5.82-py3-none-win_amd64.whl", hash = "sha256:0fd5fbca289bceb9f0690aa9858f06187b554fdeb7e2711dfd5bb3ce58900b46", size = 889895, upload-time = "2024-07-01T16:42:46.545Z" }, +] + +[[package]] +name = "nvidia-cudnn-cu12" +version = "9.1.0.70" +source = { registry = "https://pypi.org/simple" } +resolution-markers = [ + "python_full_version >= '3.12' and sys_platform == 'linux'", + "python_full_version < '3.12' and sys_platform == 'linux'", +] +dependencies = [ + { name = "nvidia-cublas-cu12", version = "12.4.5.8", source = { registry = "https://pypi.org/simple" }, marker = "(sys_platform == 'linux' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-trustyai') or (sys_platform == 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-pytorchcuda') or (sys_platform == 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai')" }, +] +wheels = [ + { url = "https://files.pythonhosted.org/packages/9f/fd/713452cd72343f682b1c7b9321e23829f00b842ceaedcda96e742ea0b0b3/nvidia_cudnn_cu12-9.1.0.70-py3-none-manylinux2014_x86_64.whl", hash = "sha256:165764f44ef8c61fcdfdfdbe769d687e06374059fbb388b6c89ecb0e28793a6f", size = 664752741, upload-time = "2024-04-22T15:24:15.253Z" }, + { url = "https://files.pythonhosted.org/packages/3f/d0/f90ee6956a628f9f04bf467932c0a25e5a7e706a684b896593c06c82f460/nvidia_cudnn_cu12-9.1.0.70-py3-none-win_amd64.whl", hash = "sha256:6278562929433d68365a07a4a1546c237ba2849852c0d4b2262a486e805b977a", size = 679925892, upload-time = "2024-04-22T15:24:53.333Z" }, +] + +[[package]] +name = "nvidia-cudnn-cu12" +version = "9.3.0.75" +source = { registry = "https://pypi.org/simple" } +resolution-markers = [ + "python_full_version >= '3.12' and sys_platform == 'linux'", + "python_full_version < '3.12' and sys_platform == 'linux'", +] +dependencies = [ + { name = "nvidia-cublas-cu12", version = "12.5.3.2", source = { registry = "https://pypi.org/simple" }, marker = "sys_platform == 'linux'" }, +] +wheels = [ + { url = "https://files.pythonhosted.org/packages/6c/a8/b53c657fdbc9a6a655fc40ba1f15c3c0f593e763657565a7e1a5194c4522/nvidia_cudnn_cu12-9.3.0.75-py3-none-manylinux2014_aarch64.whl", hash = "sha256:c5cf7ff3415e446adf195a5b7dd2ba56cd00c3ee78bfdc566e51698931aa4b7f", size = 576342681, upload-time = "2024-08-05T20:10:31.908Z" }, + { url = "https://files.pythonhosted.org/packages/8e/56/bb5c08a8d401fc1b21a10e9c58907e70e8f18bdfca34b7ecfb87bbcdad63/nvidia_cudnn_cu12-9.3.0.75-py3-none-manylinux2014_x86_64.whl", hash = "sha256:9ad9c6929ebb5295eb4a1728024666d1c88283373e265a0c5c883e6f9d5cd76d", size = 577163502, upload-time = "2024-08-05T20:10:57.111Z" }, + { url = "https://files.pythonhosted.org/packages/ba/bf/230b3b911345ba339f8b2e5ca18f860690e7327ad2d311826f41f1ead388/nvidia_cudnn_cu12-9.3.0.75-py3-none-win_amd64.whl", hash = "sha256:c819e82eed8cf564b9d37478ea4eab9e87194bb3b7f7f8098bc1f67c9b80f1b6", size = 574781431, upload-time = "2024-08-05T20:11:23.45Z" }, +] + +[[package]] +name = "nvidia-cufft-cu12" +version = "11.2.1.3" +source = { registry = "https://pypi.org/simple" } +resolution-markers = [ + "python_full_version >= '3.12' and sys_platform == 'linux'", + "python_full_version < '3.12' and sys_platform == 'linux'", +] +dependencies = [ + { name = "nvidia-nvjitlink-cu12", version = "12.4.127", source = { registry = "https://pypi.org/simple" }, marker = "(sys_platform == 'linux' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-trustyai') or (sys_platform == 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-pytorchcuda') or (sys_platform == 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai')" }, +] +wheels = [ + { url = "https://files.pythonhosted.org/packages/7a/8a/0e728f749baca3fbeffad762738276e5df60851958be7783af121a7221e7/nvidia_cufft_cu12-11.2.1.3-py3-none-manylinux2014_aarch64.whl", hash = "sha256:5dad8008fc7f92f5ddfa2101430917ce2ffacd86824914c82e28990ad7f00399", size = 211422548, upload-time = "2024-06-18T19:33:39.396Z" }, + { url = "https://files.pythonhosted.org/packages/27/94/3266821f65b92b3138631e9c8e7fe1fb513804ac934485a8d05776e1dd43/nvidia_cufft_cu12-11.2.1.3-py3-none-manylinux2014_x86_64.whl", hash = "sha256:f083fc24912aa410be21fa16d157fed2055dab1cc4b6934a0e03cba69eb242b9", size = 211459117, upload-time = "2024-04-03T20:57:40.402Z" }, + { url = "https://files.pythonhosted.org/packages/f6/ee/3f3f8e9874f0be5bbba8fb4b62b3de050156d159f8b6edc42d6f1074113b/nvidia_cufft_cu12-11.2.1.3-py3-none-win_amd64.whl", hash = "sha256:d802f4954291101186078ccbe22fc285a902136f974d369540fd4a5333d1440b", size = 210576476, upload-time = "2024-04-03T21:04:06.422Z" }, +] + +[[package]] +name = "nvidia-cufft-cu12" +version = "11.2.3.61" +source = { registry = "https://pypi.org/simple" } +resolution-markers = [ + "python_full_version >= '3.12' and sys_platform == 'linux'", + "python_full_version < '3.12' and sys_platform == 'linux'", +] +dependencies = [ + { name = "nvidia-nvjitlink-cu12", version = "12.5.82", source = { registry = "https://pypi.org/simple" }, marker = "sys_platform == 'linux'" }, +] +wheels = [ + { url = "https://files.pythonhosted.org/packages/15/5a/e4f229b60b47b45c2b420e88dd497ef228b5d853a5b738cfdf5ba78ff0f8/nvidia_cufft_cu12-11.2.3.61-py3-none-manylinux2014_aarch64.whl", hash = "sha256:6d45b48a5ee7599e57131129cda2c58544d9b78b95064d3ec3e5c6b96e2b58cc", size = 192340538, upload-time = "2024-07-18T19:36:11.208Z" }, + { url = "https://files.pythonhosted.org/packages/e4/85/f18c88f63489cdced17b06d3b627adca8add7d7b8cce8c11213e93a902b4/nvidia_cufft_cu12-11.2.3.61-py3-none-manylinux2014_x86_64.whl", hash = "sha256:9a6e8df162585750f61983a638104a48c756aa13f9f48e19ab079b38e3c828b8", size = 192524114, upload-time = "2024-07-01T16:39:56.831Z" }, + { url = "https://files.pythonhosted.org/packages/97/d7/045307b0c4fb19e1200c73620191e466d23723ed94e95c9417c699ced5ff/nvidia_cufft_cu12-11.2.3.61-py3-none-win_amd64.whl", hash = "sha256:4a8f6f0ce93c52a50ee83422a80472b5f376054a63f38532d0eab4007e7ef28b", size = 191481825, upload-time = "2024-07-01T16:46:01.629Z" }, +] + +[[package]] +name = "nvidia-curand-cu12" +version = "10.3.5.147" +source = { registry = "https://pypi.org/simple" } +resolution-markers = [ + "python_full_version >= '3.12' and sys_platform == 'linux'", + "python_full_version < '3.12' and sys_platform == 'linux'", +] +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" }, + { url = "https://files.pythonhosted.org/packages/8a/6d/44ad094874c6f1b9c654f8ed939590bdc408349f137f9b98a3a23ccec411/nvidia_curand_cu12-10.3.5.147-py3-none-manylinux2014_x86_64.whl", hash = "sha256:a88f583d4e0bb643c49743469964103aa59f7f708d862c3ddb0fc07f851e3b8b", size = 56305206, upload-time = "2024-04-03T20:58:08.722Z" }, + { url = "https://files.pythonhosted.org/packages/1c/22/2573503d0d4e45673c263a313f79410e110eb562636b0617856fdb2ff5f6/nvidia_curand_cu12-10.3.5.147-py3-none-win_amd64.whl", hash = "sha256:f307cc191f96efe9e8f05a87096abc20d08845a841889ef78cb06924437f6771", size = 55799918, upload-time = "2024-04-03T21:04:34.45Z" }, +] + +[[package]] +name = "nvidia-curand-cu12" +version = "10.3.6.82" +source = { registry = "https://pypi.org/simple" } +resolution-markers = [ + "python_full_version >= '3.12' and sys_platform == 'linux'", + "python_full_version < '3.12' and sys_platform == 'linux'", +] +wheels = [ + { url = "https://files.pythonhosted.org/packages/84/ac/2623e574aba769160d1d9c312a16d5fc3e0e4484ad5a9cb21831447afaf4/nvidia_curand_cu12-10.3.6.82-py3-none-manylinux2014_aarch64.whl", hash = "sha256:36aabeb5990297bbce3df324ea7c7c13c3aabb140c86d50ab3b23e4ec61672f1", size = 56319067, upload-time = "2024-07-18T19:36:25.559Z" }, + { url = "https://files.pythonhosted.org/packages/f8/ce/cc6daf7820804ee7f11a0352a1f0fd59cec5f12e904f5bbaee6d928ffdaf/nvidia_curand_cu12-10.3.6.82-py3-none-manylinux2014_x86_64.whl", hash = "sha256:2823fb27de4e44dbb22394a6adf53aa6e1b013aca0f8c22867d1cfae58405536", size = 56309107, upload-time = "2024-07-01T16:40:14.205Z" }, + { url = "https://files.pythonhosted.org/packages/6f/cd/435f4864b95cff087b9b1d249d09835a77bd7268fe151bc5d085ff68ea82/nvidia_curand_cu12-10.3.6.82-py3-none-win_amd64.whl", hash = "sha256:0631ba65231260ad832ce233ddda57e7b3b7158eabf000d78e46cbb5bd5b7aae", size = 55800296, upload-time = "2024-07-01T16:46:19.099Z" }, +] + +[[package]] +name = "nvidia-cusolver-cu12" +version = "11.6.1.9" +source = { registry = "https://pypi.org/simple" } +resolution-markers = [ + "python_full_version >= '3.12' and sys_platform == 'linux'", + "python_full_version < '3.12' and sys_platform == 'linux'", +] +dependencies = [ + { name = "nvidia-cublas-cu12", version = "12.4.5.8", source = { registry = "https://pypi.org/simple" }, marker = "(sys_platform == 'linux' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-trustyai') or (sys_platform == 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-pytorchcuda') or (sys_platform == 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai')" }, + { name = "nvidia-cusparse-cu12", version = "12.3.1.170", source = { registry = "https://pypi.org/simple" }, marker = "(sys_platform == 'linux' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-trustyai') or (sys_platform == 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-pytorchcuda') or (sys_platform == 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai')" }, + { name = "nvidia-nvjitlink-cu12", version = "12.4.127", source = { registry = "https://pypi.org/simple" }, marker = "(sys_platform == 'linux' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-trustyai') or (sys_platform == 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-pytorchcuda') or (sys_platform == 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai')" }, +] +wheels = [ + { url = "https://files.pythonhosted.org/packages/46/6b/a5c33cf16af09166845345275c34ad2190944bcc6026797a39f8e0a282e0/nvidia_cusolver_cu12-11.6.1.9-py3-none-manylinux2014_aarch64.whl", hash = "sha256:d338f155f174f90724bbde3758b7ac375a70ce8e706d70b018dd3375545fc84e", size = 127634111, upload-time = "2024-06-18T19:35:01.793Z" }, + { url = "https://files.pythonhosted.org/packages/3a/e1/5b9089a4b2a4790dfdea8b3a006052cfecff58139d5a4e34cb1a51df8d6f/nvidia_cusolver_cu12-11.6.1.9-py3-none-manylinux2014_x86_64.whl", hash = "sha256:19e33fa442bcfd085b3086c4ebf7e8debc07cfe01e11513cc6d332fd918ac260", size = 127936057, upload-time = "2024-04-03T20:58:28.735Z" }, + { url = "https://files.pythonhosted.org/packages/f2/be/d435b7b020e854d5d5a682eb5de4328fd62f6182507406f2818280e206e2/nvidia_cusolver_cu12-11.6.1.9-py3-none-win_amd64.whl", hash = "sha256:e77314c9d7b694fcebc84f58989f3aa4fb4cb442f12ca1a9bde50f5e8f6d1b9c", size = 125224015, upload-time = "2024-04-03T21:04:53.339Z" }, +] + +[[package]] +name = "nvidia-cusolver-cu12" +version = "11.6.3.83" +source = { registry = "https://pypi.org/simple" } +resolution-markers = [ + "python_full_version >= '3.12' and sys_platform == 'linux'", + "python_full_version < '3.12' and sys_platform == 'linux'", +] +dependencies = [ + { name = "nvidia-cublas-cu12", version = "12.5.3.2", source = { registry = "https://pypi.org/simple" }, marker = "sys_platform == 'linux'" }, + { name = "nvidia-cusparse-cu12", version = "12.5.1.3", source = { registry = "https://pypi.org/simple" }, marker = "sys_platform == 'linux'" }, + { name = "nvidia-nvjitlink-cu12", version = "12.5.82", source = { registry = "https://pypi.org/simple" }, marker = "sys_platform == 'linux'" }, +] +wheels = [ + { url = "https://files.pythonhosted.org/packages/30/54/8241cd29e87b86716fef227bb5e742d1b72b166b52a03a64dad2e650d664/nvidia_cusolver_cu12-11.6.3.83-py3-none-manylinux2014_aarch64.whl", hash = "sha256:1b8b77d2fe8abe72bb722dafb708cceaeb81f1a03999477f20b33b34f46ab885", size = 130017694, upload-time = "2024-07-18T19:36:48.936Z" }, + { url = "https://files.pythonhosted.org/packages/33/73/57fbf55b3f378a73faecde397a0927ea205b458f06573dfb191b7d9fd1d3/nvidia_cusolver_cu12-11.6.3.83-py3-none-manylinux2014_x86_64.whl", hash = "sha256:93cfafacde4428b71778eeb092ec615a02a3d05404da1bcf91c53e3fa1bce42b", size = 130341232, upload-time = "2024-07-01T16:40:37.869Z" }, + { url = "https://files.pythonhosted.org/packages/9e/4b/67c7a35811f6e1720bbfd391fc86c83f82b1b19345ff14dfc85e2e1a45a9/nvidia_cusolver_cu12-11.6.3.83-py3-none-win_amd64.whl", hash = "sha256:6224732963cba312a84c78114b9a38c4ffabb2e2a6a120923ac99ba6f895c8cf", size = 127631195, upload-time = "2024-07-01T16:46:42.185Z" }, +] + +[[package]] +name = "nvidia-cusparse-cu12" +version = "12.3.1.170" +source = { registry = "https://pypi.org/simple" } +resolution-markers = [ + "python_full_version >= '3.12' and sys_platform == 'linux'", + "python_full_version < '3.12' and sys_platform == 'linux'", +] +dependencies = [ + { name = "nvidia-nvjitlink-cu12", version = "12.4.127", source = { registry = "https://pypi.org/simple" }, marker = "(sys_platform == 'linux' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-trustyai') or (sys_platform == 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-pytorchcuda') or (sys_platform == 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai')" }, +] +wheels = [ + { url = "https://files.pythonhosted.org/packages/96/a9/c0d2f83a53d40a4a41be14cea6a0bf9e668ffcf8b004bd65633f433050c0/nvidia_cusparse_cu12-12.3.1.170-py3-none-manylinux2014_aarch64.whl", hash = "sha256:9d32f62896231ebe0480efd8a7f702e143c98cfaa0e8a76df3386c1ba2b54df3", size = 207381987, upload-time = "2024-06-18T19:35:32.989Z" }, + { url = "https://files.pythonhosted.org/packages/db/f7/97a9ea26ed4bbbfc2d470994b8b4f338ef663be97b8f677519ac195e113d/nvidia_cusparse_cu12-12.3.1.170-py3-none-manylinux2014_x86_64.whl", hash = "sha256:ea4f11a2904e2a8dc4b1833cc1b5181cde564edd0d5cd33e3c168eff2d1863f1", size = 207454763, upload-time = "2024-04-03T20:58:59.995Z" }, + { url = "https://files.pythonhosted.org/packages/a2/e0/3155ca539760a8118ec94cc279b34293309bcd14011fc724f87f31988843/nvidia_cusparse_cu12-12.3.1.170-py3-none-win_amd64.whl", hash = "sha256:9bc90fb087bc7b4c15641521f31c0371e9a612fc2ba12c338d3ae032e6b6797f", size = 204684315, upload-time = "2024-04-03T21:05:26.031Z" }, +] + +[[package]] +name = "nvidia-cusparse-cu12" +version = "12.5.1.3" +source = { registry = "https://pypi.org/simple" } +resolution-markers = [ + "python_full_version >= '3.12' and sys_platform == 'linux'", + "python_full_version < '3.12' and sys_platform == 'linux'", +] +dependencies = [ + { name = "nvidia-nvjitlink-cu12", version = "12.5.82", source = { registry = "https://pypi.org/simple" }, marker = "sys_platform == 'linux'" }, +] +wheels = [ + { url = "https://files.pythonhosted.org/packages/13/ce/444a13d922a91af1c92acb1f899358e274e39c23a8cabd4821bd90279840/nvidia_cusparse_cu12-12.5.1.3-py3-none-manylinux2014_aarch64.whl", hash = "sha256:7b97fd01f0a61628af99d0efd52132fccc8c18fc5c509f13802dccf0574a19c2", size = 217444935, upload-time = "2024-07-18T19:37:07.937Z" }, + { url = "https://files.pythonhosted.org/packages/b3/29/03726191334fa523d9654e3dacca5cc152f24bb9fa1a5721e4dddac7a8c5/nvidia_cusparse_cu12-12.5.1.3-py3-none-manylinux2014_x86_64.whl", hash = "sha256:016df8e993c437e8301e62739f01775cba988fd5253cd4c64173f8e8d2f8e752", size = 217558979, upload-time = "2024-07-01T16:40:59.327Z" }, + { url = "https://files.pythonhosted.org/packages/4d/69/26ca389e84fbe5fab7dc72638c570a259efe5fb2872dbc62855dda2becbf/nvidia_cusparse_cu12-12.5.1.3-py3-none-win_amd64.whl", hash = "sha256:33520db374e2f5ebc976d6faa1852b98c398a57e6f71150fe59705928596ffd1", size = 214718866, upload-time = "2024-07-01T16:47:04.545Z" }, +] + +[[package]] +name = "nvidia-cusparselt-cu12" +version = "0.6.2" +source = { registry = "https://pypi.org/simple" } +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" }, + { url = "https://files.pythonhosted.org/packages/78/a8/bcbb63b53a4b1234feeafb65544ee55495e1bb37ec31b999b963cbccfd1d/nvidia_cusparselt_cu12-0.6.2-py3-none-manylinux2014_x86_64.whl", hash = "sha256:df2c24502fd76ebafe7457dbc4716b2fec071aabaed4fb7691a201cde03704d9", size = 150057751, upload-time = "2024-07-23T02:35:53.074Z" }, + { url = "https://files.pythonhosted.org/packages/56/8f/2c33082238b6c5e783a877dc8786ab62619e3e6171c083bd3bba6e3fe75e/nvidia_cusparselt_cu12-0.6.2-py3-none-win_amd64.whl", hash = "sha256:0057c91d230703924c0422feabe4ce768841f9b4b44d28586b6f6d2eb86fbe70", size = 148755794, upload-time = "2024-07-23T02:35:00.261Z" }, +] + +[[package]] +name = "nvidia-nccl-cu12" +version = "2.21.5" +source = { registry = "https://pypi.org/simple" } +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" }, +] + +[[package]] +name = "nvidia-nvjitlink-cu12" +version = "12.4.127" +source = { registry = "https://pypi.org/simple" } +resolution-markers = [ + "python_full_version >= '3.12' and sys_platform == 'linux'", + "python_full_version < '3.12' and sys_platform == 'linux'", +] +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" }, + { url = "https://files.pythonhosted.org/packages/ff/ff/847841bacfbefc97a00036e0fce5a0f086b640756dc38caea5e1bb002655/nvidia_nvjitlink_cu12-12.4.127-py3-none-manylinux2014_x86_64.whl", hash = "sha256:06b3b9b25bf3f8af351d664978ca26a16d2c5127dbd53c0497e28d1fb9611d57", size = 21066810, upload-time = "2024-04-03T20:59:46.957Z" }, + { url = "https://files.pythonhosted.org/packages/81/19/0babc919031bee42620257b9a911c528f05fb2688520dcd9ca59159ffea8/nvidia_nvjitlink_cu12-12.4.127-py3-none-win_amd64.whl", hash = "sha256:fd9020c501d27d135f983c6d3e244b197a7ccad769e34df53a42e276b0e25fa1", size = 95336325, upload-time = "2024-04-03T21:06:25.073Z" }, +] + +[[package]] +name = "nvidia-nvjitlink-cu12" +version = "12.5.82" +source = { registry = "https://pypi.org/simple" } +resolution-markers = [ + "python_full_version >= '3.12' and sys_platform == 'linux'", + "python_full_version < '3.12' and sys_platform == 'linux'", +] +wheels = [ + { url = "https://files.pythonhosted.org/packages/65/93/4934518fecebfa5696f179ee984d028a39589515d7994bd7e30da396a89a/nvidia_nvjitlink_cu12-12.5.82-py3-none-manylinux2014_aarch64.whl", hash = "sha256:98103729cc5226e13ca319a10bbf9433bbbd44ef64fe72f45f067cacc14b8d27", size = 20774026, upload-time = "2024-07-18T19:38:04.752Z" }, + { url = "https://files.pythonhosted.org/packages/75/bc/e0d0dbb85246a086ab14839979039647bce501d8c661a159b8b019d987b7/nvidia_nvjitlink_cu12-12.5.82-py3-none-manylinux2014_x86_64.whl", hash = "sha256:f9b37bc5c8cf7509665cb6ada5aaa0ce65618f2332b7d3e78e9790511f111212", size = 21298879, upload-time = "2024-07-01T16:41:53.953Z" }, + { url = "https://files.pythonhosted.org/packages/a4/1a/10828d8c7b8addc4a435dd57112ea544d594ef899a86700897558531492e/nvidia_nvjitlink_cu12-12.5.82-py3-none-win_amd64.whl", hash = "sha256:e782564d705ff0bf61ac3e1bf730166da66dd2fe9012f111ede5fc49b64ae697", size = 161776086, upload-time = "2024-07-01T16:48:04.936Z" }, +] + +[[package]] +name = "nvidia-nvtx-cu12" +version = "12.4.127" +source = { registry = "https://pypi.org/simple" } +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" }, + { url = "https://files.pythonhosted.org/packages/87/20/199b8713428322a2f22b722c62b8cc278cc53dffa9705d744484b5035ee9/nvidia_nvtx_cu12-12.4.127-py3-none-manylinux2014_x86_64.whl", hash = "sha256:781e950d9b9f60d8241ccea575b32f5105a5baf4c2351cab5256a24869f12a1a", size = 99144, upload-time = "2024-04-03T20:56:12.406Z" }, + { url = "https://files.pythonhosted.org/packages/54/1b/f77674fbb73af98843be25803bbd3b9a4f0a96c75b8d33a2854a5c7d2d77/nvidia_nvtx_cu12-12.4.127-py3-none-win_amd64.whl", hash = "sha256:641dccaaa1139f3ffb0d3164b4b84f9d253397e38246a4f2f36728b48566d485", size = 66307, upload-time = "2024-04-03T21:02:01.959Z" }, +] + +[[package]] +name = "oauthlib" +version = "3.2.2" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/6d/fa/fbf4001037904031639e6bfbfc02badfc7e12f137a8afa254df6c4c8a670/oauthlib-3.2.2.tar.gz", hash = "sha256:9859c40929662bec5d64f34d01c99e093149682a3f38915dc0655d5a633dd918", size = 177352, upload-time = "2022-10-17T20:04:27.471Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/7e/80/cab10959dc1faead58dc8384a781dfbf93cb4d33d50988f7a69f1b7c9bbe/oauthlib-3.2.2-py3-none-any.whl", hash = "sha256:8139f29aac13e25d502680e9e19963e83f16838d48a0d71c287fe40e7067fbca", size = 151688, upload-time = "2022-10-17T20:04:24.037Z" }, +] + +[[package]] +name = "odh-elyra" +version = "4.2.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "appengine-python-standard", marker = "sys_platform == 'linux'" }, + { name = "autopep8", marker = "sys_platform == 'linux'" }, + { name = "black", marker = "sys_platform == 'linux'" }, + { name = "click", marker = "sys_platform == 'linux'" }, + { name = "colorama", marker = "sys_platform == 'linux'" }, + { name = "deprecation", marker = "sys_platform == 'linux'" }, + { name = "entrypoints", marker = "sys_platform == 'linux'" }, + { name = "jinja2", marker = "sys_platform == 'linux'" }, + { name = "jsonschema", marker = "sys_platform == 'linux'" }, + { name = "jupyter-client", marker = "sys_platform == 'linux'" }, + { name = "jupyter-core", marker = "sys_platform == 'linux'" }, + { name = "jupyter-events", marker = "sys_platform == 'linux'" }, + { name = "jupyter-packaging", marker = "sys_platform == 'linux'" }, + { name = "jupyter-resource-usage", marker = "sys_platform == 'linux'" }, + { name = "jupyter-server", marker = "sys_platform == 'linux'" }, + { name = "jupyterlab", marker = "sys_platform == 'linux'" }, + { name = "jupyterlab-git", marker = "sys_platform == 'linux'" }, + { name = "jupyterlab-lsp", marker = "sys_platform == 'linux'" }, + { name = "kfp", marker = "sys_platform == 'linux'" }, + { name = "kfp-kubernetes", marker = "sys_platform == 'linux'" }, + { name = "markupsafe", marker = "sys_platform == 'linux'" }, + { name = "minio", marker = "sys_platform == 'linux'" }, + { name = "nbclient", marker = "sys_platform == 'linux'" }, + { name = "nbconvert", marker = "sys_platform == 'linux'" }, + { name = "nbdime", marker = "sys_platform == 'linux'" }, + { name = "nbformat", marker = "sys_platform == 'linux'" }, + { name = "networkx", marker = "sys_platform == 'linux'" }, + { name = "papermill", marker = "sys_platform == 'linux'" }, + { name = "pygithub", marker = "sys_platform == 'linux'" }, + { name = "python-lsp-server", extra = ["all"], marker = "sys_platform == 'linux' or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai')" }, + { name = "pyyaml", marker = "sys_platform == 'linux'" }, + { name = "requests", marker = "sys_platform == 'linux'" }, + { name = "rfc3986-validator", marker = "sys_platform == 'linux'" }, + { name = "tornado", marker = "sys_platform == 'linux'" }, + { name = "traitlets", marker = "sys_platform == 'linux'" }, + { name = "typing-extensions", marker = "sys_platform == 'linux'" }, + { name = "urllib3", marker = "sys_platform == 'linux'" }, + { name = "watchdog", marker = "sys_platform == 'linux'" }, + { name = "websocket-client", marker = "sys_platform == 'linux'" }, + { name = "yaspin", marker = "sys_platform == 'linux'" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/f3/2a/28ad85f95c40f324aea2136376d450eb3bf10763c1945ca2a9a95251a54f/odh_elyra-4.2.0.tar.gz", hash = "sha256:82f7c3e005b4b7dc1a3be4d829b5d4b3d3c72687f0e1f95fbcbc9c85b29ccf1f", size = 2154129, upload-time = "2024-10-30T15:34:52.751Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/07/a2/b934eb3ffafd608b600f3ba53c5b664baae2485f8a8607a22f7ed38a8c8d/odh_elyra-4.2.0-py3-none-any.whl", hash = "sha256:fd074ccee0cc0700f4a0c42c9ea51bb335d42090eb6d6849d6ca84d078a83384", size = 4315733, upload-time = "2024-10-30T15:34:50.511Z" }, +] + +[[package]] +name = "onnx" +version = "1.18.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "numpy", version = "1.24.4", source = { registry = "https://pypi.org/simple" }, marker = "(sys_platform == 'linux' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-trustyai') or (sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai')" }, + { name = "numpy", version = "1.26.4", source = { registry = "https://pypi.org/simple" }, marker = "(sys_platform == 'linux' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (sys_platform == 'linux' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-tensorflow') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai')" }, + { name = "numpy", version = "2.2.6", source = { registry = "https://pypi.org/simple" }, marker = "(sys_platform == 'linux' and extra == 'group-9-notebooks-jupyter-datascience-image') or (sys_platform == 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (sys_platform == 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred') or (sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred') or (sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchcuda') or (sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchrocm') or (sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai')" }, + { name = "protobuf", marker = "sys_platform == 'linux'" }, + { name = "typing-extensions", marker = "sys_platform == 'linux'" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/3d/60/e56e8ec44ed34006e6d4a73c92a04d9eea6163cc12440e35045aec069175/onnx-1.18.0.tar.gz", hash = "sha256:3d8dbf9e996629131ba3aa1afd1d8239b660d1f830c6688dd7e03157cccd6b9c", size = 12563009, upload-time = "2025-05-12T22:03:09.626Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/ed/3a/a336dac4db1eddba2bf577191e5b7d3e4c26fcee5ec518a5a5b11d13540d/onnx-1.18.0-cp311-cp311-macosx_12_0_universal2.whl", hash = "sha256:735e06d8d0cf250dc498f54038831401063c655a8d6e5975b2527a4e7d24be3e", size = 18281831, upload-time = "2025-05-12T22:02:06.429Z" }, + { url = "https://files.pythonhosted.org/packages/02/3a/56475a111120d1e5d11939acbcbb17c92198c8e64a205cd68e00bdfd8a1f/onnx-1.18.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:73160799472e1a86083f786fecdf864cf43d55325492a9b5a1cfa64d8a523ecc", size = 17424359, upload-time = "2025-05-12T22:02:09.866Z" }, + { url = "https://files.pythonhosted.org/packages/cf/03/5eb5e9ef446ed9e78c4627faf3c1bc25e0f707116dd00e9811de232a8df5/onnx-1.18.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6acafb3823238bbe8f4340c7ac32fb218689442e074d797bee1c5c9a02fdae75", size = 17586006, upload-time = "2025-05-12T22:02:13.217Z" }, + { url = "https://files.pythonhosted.org/packages/b0/4e/70943125729ce453271a6e46bb847b4a612496f64db6cbc6cb1f49f41ce1/onnx-1.18.0-cp311-cp311-win32.whl", hash = "sha256:4c8c4bbda760c654e65eaffddb1a7de71ec02e60092d33f9000521f897c99be9", size = 15734988, upload-time = "2025-05-12T22:02:16.561Z" }, + { url = "https://files.pythonhosted.org/packages/44/b0/435fd764011911e8f599e3361f0f33425b1004662c1ea33a0ad22e43db2d/onnx-1.18.0-cp311-cp311-win_amd64.whl", hash = "sha256:a5810194f0f6be2e58c8d6dedc6119510df7a14280dd07ed5f0f0a85bd74816a", size = 15849576, upload-time = "2025-05-12T22:02:19.569Z" }, + { url = "https://files.pythonhosted.org/packages/6c/f0/9e31f4b4626d60f1c034f71b411810bc9fafe31f4e7dd3598effd1b50e05/onnx-1.18.0-cp311-cp311-win_arm64.whl", hash = "sha256:aa1b7483fac6cdec26922174fc4433f8f5c2f239b1133c5625063bb3b35957d0", size = 15822961, upload-time = "2025-05-12T22:02:22.735Z" }, + { url = "https://files.pythonhosted.org/packages/a7/fe/16228aca685392a7114625b89aae98b2dc4058a47f0f467a376745efe8d0/onnx-1.18.0-cp312-cp312-macosx_12_0_universal2.whl", hash = "sha256:521bac578448667cbb37c50bf05b53c301243ede8233029555239930996a625b", size = 18285770, upload-time = "2025-05-12T22:02:26.116Z" }, + { url = "https://files.pythonhosted.org/packages/1e/77/ba50a903a9b5e6f9be0fa50f59eb2fca4a26ee653375408fbc72c3acbf9f/onnx-1.18.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e4da451bf1c5ae381f32d430004a89f0405bc57a8471b0bddb6325a5b334aa40", size = 17421291, upload-time = "2025-05-12T22:02:29.645Z" }, + { url = "https://files.pythonhosted.org/packages/11/23/25ec2ba723ac62b99e8fed6d7b59094dadb15e38d4c007331cc9ae3dfa5f/onnx-1.18.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:99afac90b4cdb1471432203c3c1f74e16549c526df27056d39f41a9a47cfb4af", size = 17584084, upload-time = "2025-05-12T22:02:32.789Z" }, + { url = "https://files.pythonhosted.org/packages/6a/4d/2c253a36070fb43f340ff1d2c450df6a9ef50b938adcd105693fee43c4ee/onnx-1.18.0-cp312-cp312-win32.whl", hash = "sha256:ee159b41a3ae58d9c7341cf432fc74b96aaf50bd7bb1160029f657b40dc69715", size = 15734892, upload-time = "2025-05-12T22:02:35.527Z" }, + { url = "https://files.pythonhosted.org/packages/e8/92/048ba8fafe6b2b9a268ec2fb80def7e66c0b32ab2cae74de886981f05a27/onnx-1.18.0-cp312-cp312-win_amd64.whl", hash = "sha256:102c04edc76b16e9dfeda5a64c1fccd7d3d2913b1544750c01d38f1ac3c04e05", size = 15850336, upload-time = "2025-05-12T22:02:38.545Z" }, + { url = "https://files.pythonhosted.org/packages/a1/66/bbc4ffedd44165dcc407a51ea4c592802a5391ce3dc94aa5045350f64635/onnx-1.18.0-cp312-cp312-win_arm64.whl", hash = "sha256:911b37d724a5d97396f3c2ef9ea25361c55cbc9aa18d75b12a52b620b67145af", size = 15823802, upload-time = "2025-05-12T22:02:42.037Z" }, +] + +[[package]] +name = "onnxconverter-common" +version = "1.13.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "numpy", version = "1.24.4", source = { registry = "https://pypi.org/simple" }, marker = "(sys_platform == 'linux' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-trustyai') or (sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai')" }, + { name = "numpy", version = "1.26.4", source = { registry = "https://pypi.org/simple" }, marker = "(sys_platform == 'linux' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (sys_platform == 'linux' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-tensorflow') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai')" }, + { name = "numpy", version = "2.2.6", source = { registry = "https://pypi.org/simple" }, marker = "(sys_platform == 'linux' and extra == 'group-9-notebooks-jupyter-datascience-image') or (sys_platform == 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (sys_platform == 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred') or (sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred') or (sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchcuda') or (sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchrocm') or (sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai')" }, + { name = "onnx", marker = "sys_platform == 'linux'" }, + { name = "packaging", marker = "sys_platform == 'linux'" }, + { name = "protobuf", marker = "sys_platform == 'linux'" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/ec/44/54c6b7f1a28d919a15caf642113fb44651087d1bb0658f028c54b93df8e3/onnxconverter-common-1.13.0.tar.gz", hash = "sha256:03db8a6033a3d6590f22df3f64234079caa826375d1fcb0b37b8123c06bf598c", size = 73935, upload-time = "2022-11-03T12:11:37.783Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/51/a4/4439174c879c33557eab08e4dd480c1e096bc26c487c85a62e4c0d8f78ff/onnxconverter_common-1.13.0-py2.py3-none-any.whl", hash = "sha256:5ee1c025ef6c3b4abaede8425bc6b393248941a6cf8c21563d0d0e3f04634a0a", size = 83796, upload-time = "2022-11-03T12:11:35.767Z" }, +] + +[[package]] +name = "opencensus" +version = "0.11.4" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "google-api-core", marker = "sys_platform == 'linux'" }, + { name = "opencensus-context", marker = "sys_platform == 'linux'" }, + { name = "six", marker = "sys_platform == 'linux'" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/15/a7/a46dcffa1b63084f9f17fe3c8cb20724c4c8f91009fd0b2cfdb27d5d2b35/opencensus-0.11.4.tar.gz", hash = "sha256:cbef87d8b8773064ab60e5c2a1ced58bbaa38a6d052c41aec224958ce544eff2", size = 64966, upload-time = "2024-01-03T18:04:07.085Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/b5/ed/9fbdeb23a09e430d87b7d72d430484b88184633dc50f6bfb792354b6f661/opencensus-0.11.4-py2.py3-none-any.whl", hash = "sha256:a18487ce68bc19900336e0ff4655c5a116daf10c1b3685ece8d971bddad6a864", size = 128225, upload-time = "2024-01-03T18:04:05.127Z" }, +] + +[[package]] +name = "opencensus-context" +version = "0.1.3" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/4c/96/3b6f638f6275a8abbd45e582448723bffa29c1fb426721dedb5c72f7d056/opencensus-context-0.1.3.tar.gz", hash = "sha256:a03108c3c10d8c80bb5ddf5c8a1f033161fa61972a9917f9b9b3a18517f0088c", size = 4066, upload-time = "2022-08-03T22:20:22.359Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/10/68/162c97ea78c957d68ecf78a5c5041d2e25bd5562bdf5d89a6cbf7f8429bf/opencensus_context-0.1.3-py2.py3-none-any.whl", hash = "sha256:073bb0590007af276853009fac7e4bab1d523c3f03baf4cb4511ca38967c6039", size = 5060, upload-time = "2022-08-03T22:20:20.352Z" }, +] + +[[package]] +name = "openshift-client" +version = "1.0.18" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "paramiko", marker = "sys_platform == 'linux'" }, + { name = "pyyaml", marker = "sys_platform == 'linux'" }, + { name = "six", marker = "sys_platform == 'linux'" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/61/4d/96d40621a88e430127f98467b6ef67ff2e39f2d33b9740ea0e470cf2b8bc/openshift-client-1.0.18.tar.gz", hash = "sha256:be3979440cfd96788146a3a1650dabe939d4d516eea0b39f87e66d2ab39495b1", size = 78332, upload-time = "2022-09-13T22:08:36.769Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/1d/23/a84f274a534dfcd8454f20fc19d129a7d832e5816830946670b8c954438c/openshift_client-1.0.18-py2.py3-none-any.whl", hash = "sha256:d8a84080307ccd9556f6c62a3707a3e6507baedee36fa425754f67db9ded528b", size = 75076, upload-time = "2022-09-13T22:08:35.091Z" }, +] + +[[package]] +name = "openshift-python-wrapper" +version = "10.0.92" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "click", marker = "sys_platform == 'linux' or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai')" }, + { name = "cloup", marker = "sys_platform == 'linux' or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai')" }, + { name = "colorlog", marker = "sys_platform == 'linux' or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai')" }, + { name = "jinja2", marker = "sys_platform == 'linux' or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai')" }, + { name = "kubernetes", marker = "sys_platform == 'linux' or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai')" }, + { name = "packaging", marker = "sys_platform == 'linux' or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai')" }, + { name = "pyhelper-utils", marker = "sys_platform == 'linux' or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai')" }, + { name = "pytest", marker = "sys_platform == 'linux' or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai')" }, + { name = "python-benedict", marker = "sys_platform == 'linux' or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai')" }, + { name = "python-simple-logger", marker = "sys_platform == 'linux' or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai')" }, + { name = "rich", marker = "sys_platform == 'linux' or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai')" }, + { name = "ruff", marker = "sys_platform == 'linux' or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai')" }, + { name = "timeout-sampler", marker = "sys_platform == 'linux' or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai')" }, + { name = "xmltodict", marker = "sys_platform == 'linux' or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai')" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/f9/6f/fc1999bcba2a42b83cba0d8428204ec868d5bcb5fdf1006f9ce4d2a1cd8d/openshift_python_wrapper-10.0.92.tar.gz", hash = "sha256:79c38045ec4c4b5e346134573814aebeaaa95bfb63c2ad5440bea4668c3a5610", size = 4772470, upload-time = "2024-10-07T16:44:29.855Z" } + +[[package]] +name = "opt-einsum" +version = "3.4.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/8c/b9/2ac072041e899a52f20cf9510850ff58295003aa75525e58343591b0cbfb/opt_einsum-3.4.0.tar.gz", hash = "sha256:96ca72f1b886d148241348783498194c577fa30a8faac108586b14f1ba4473ac", size = 63004, upload-time = "2024-09-26T14:33:24.483Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/23/cd/066e86230ae37ed0be70aae89aabf03ca8d9f39c8aea0dec8029455b5540/opt_einsum-3.4.0-py3-none-any.whl", hash = "sha256:69bb92469f86a1565195ece4ac0323943e83477171b91d24c35afe028a90d7cd", size = 71932, upload-time = "2024-09-26T14:33:23.039Z" }, +] + +[[package]] +name = "optree" +version = "0.16.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "typing-extensions", marker = "sys_platform == 'linux'" }, +] +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/b2/2c/9cf4bf8054b9e91ff9189b250e410e0b586530dcfaae28eab8904759888b/optree-0.16.0-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:22b015d8d7b948d7815924763d473cc7f691731f3b67198f83cea835ae3e2c98", size = 626084, upload-time = "2025-05-28T09:43:11.745Z" }, + { url = "https://files.pythonhosted.org/packages/ad/25/276ba4dae7cb5a53f9b4b24bace4db9ff93b06f62f9fa93add225244637e/optree-0.16.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:768d2e12d3626a3d37f8594b7e0d7e633ff66d5de420ca6a1df7132c6a8cdc15", size = 338246, upload-time = "2025-05-28T09:43:12.986Z" }, + { url = "https://files.pythonhosted.org/packages/87/94/2e63bc4ffca82431b167388e1f56df9409c89e6f4af3d8cdeaa3dcd28ca9/optree-0.16.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d7147cef7950eee1dd8a06815f7f7be71ae0e75874d7fad1aa822a88a954b5e4", size = 381032, upload-time = "2025-05-28T09:43:14.726Z" }, + { url = "https://files.pythonhosted.org/packages/29/09/ea90f2e1660537f198c7ef722a12e6e27d4c80f1d34376a693e24f16ccc3/optree-0.16.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:e2dced5d55f1ae100f475e217eab5fec8ba884e9d03f688cc654e388ec882266", size = 428110, upload-time = "2025-05-28T09:43:15.913Z" }, + { url = "https://files.pythonhosted.org/packages/e1/94/c3581125dbba0e407e65edbe183b28a681f1521c328d90b6ac5cdee1043b/optree-0.16.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:9dbdbdbff6e25f3d27de8201e05ffec43c504117a48ba3ed0a2bc17ec32a1f7a", size = 423020, upload-time = "2025-05-28T09:43:17.134Z" }, + { url = "https://files.pythonhosted.org/packages/4f/56/a9e9bf3334c5ea883a7fbdbda957f667c5c983f7b0056ed54354254d99b2/optree-0.16.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:0deafe21b6605bcc24f07743543e3656b2dd631772fcd152eaa26fb8a2bc0e66", size = 394549, upload-time = "2025-05-28T09:43:18.276Z" }, + { url = "https://files.pythonhosted.org/packages/43/6e/3721bf455834a4cfef1ecd9410666ec1d5708b32f01f57da7c10c2297e09/optree-0.16.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:95f0f9b05dbd53cb04f37c49a508f6462ce06fbdb1bb0e0552129de91f8d36b6", size = 416764, upload-time = "2025-05-28T09:43:19.938Z" }, + { url = "https://files.pythonhosted.org/packages/d6/72/628865bf96079052114317ecb5b93644f2a7ffbebe4687a1f05a0ef0e952/optree-0.16.0-cp311-cp311-win32.whl", hash = "sha256:cc89c7aaec64af13b78ad0018cc235599a3768310557e6dcb6e11032743f4fb7", size = 281407, upload-time = "2025-05-28T09:43:21.316Z" }, + { url = "https://files.pythonhosted.org/packages/a2/24/f29c7c819402b342020622304092a1607d6e8e8ede76610a3075663a19a7/optree-0.16.0-cp311-cp311-win_amd64.whl", hash = "sha256:f703d7926c36eebdd56fc08aabefcf32a8b7292a9dd4468e56b0ab61bf6214bd", size = 314213, upload-time = "2025-05-28T09:43:23.091Z" }, + { url = "https://files.pythonhosted.org/packages/c8/bf/3ea23ceb2cfa2c3cabf511da79e471db6e60aed74a83d584ab8f5b1f4991/optree-0.16.0-cp311-cp311-win_arm64.whl", hash = "sha256:86d5b19975bb043fbba4715d90579054af11d8fab950f1ca11f0ccfd3538c1c0", size = 311624, upload-time = "2025-05-28T09:43:24.691Z" }, + { url = "https://files.pythonhosted.org/packages/c6/08/c18e47472189bf9901ce98678f958bda15ec2f39803fea83cdf88b2f8a67/optree-0.16.0-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:b08eee60cd0756cd9874ffb44f5e47337c698100fd19dcdc18b86eb1518e3a0a", size = 634383, upload-time = "2025-05-28T09:43:26.09Z" }, + { url = "https://files.pythonhosted.org/packages/cc/73/d106c9d4ffcd24086504539bfb333ba0fec60664b0c4b59ce6b86268c684/optree-0.16.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:71e667b1dd0d331590e1356af506ab9896803acb85aea114f9e76a16a4e1be36", size = 341559, upload-time = "2025-05-28T09:43:27.353Z" }, + { url = "https://files.pythonhosted.org/packages/74/66/d5e668e1b54fcbaa99391b9a04504b2a1b1d992eccace3fcc04b3c7fb573/optree-0.16.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a010c919cf9652dcf0152c14a948f502c5ca7cb34a61157b4eb9c4766d3eea43", size = 376781, upload-time = "2025-05-28T09:43:28.992Z" }, + { url = "https://files.pythonhosted.org/packages/83/df/064eb5ac0aea384d7cddb4b27705ec9d59271da44a6b268e67ff589b8fb2/optree-0.16.0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:78d54dbc082fc5a3402ca73c129f997dc7a13e3d64ea457a7e5688a99af36d3f", size = 424733, upload-time = "2025-05-28T09:43:30.858Z" }, + { url = "https://files.pythonhosted.org/packages/b0/ae/b0262777f4fa560b556c7971a63ccc4682c090a547d0aff45a8b41296d4d/optree-0.16.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:ecb34c46af996c6d7ed9eda4ea0bf01671aee84a5503cf3f4445502d0c01a853", size = 420486, upload-time = "2025-05-28T09:43:32.172Z" }, + { url = "https://files.pythonhosted.org/packages/fe/63/2f91e91e743fd70966bf558855f8ce42156a459dcda4f4569091a5960c71/optree-0.16.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:690440c8296bc8b9e76f830066ed899186dcfa51d404c9b72dca3acced17ca6f", size = 390836, upload-time = "2025-05-28T09:43:34.493Z" }, + { url = "https://files.pythonhosted.org/packages/e5/33/48ac6749986e440838990a16beb830ddc1c30d8dba150a030a53377abf77/optree-0.16.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f08aaa1c2ae092b3e662125ad19860046c63d7451d41be133ddd6594920e295e", size = 412699, upload-time = "2025-05-28T09:43:36.81Z" }, + { url = "https://files.pythonhosted.org/packages/0e/d2/c87a225c14c4ca642c67b1e7a668091441aa52dcf142ea0147f2fdba21d4/optree-0.16.0-cp312-cp312-win32.whl", hash = "sha256:c9ba09623fc287a1c887a1e070d780369df561c78acb51281d8bf373a0fcef27", size = 282475, upload-time = "2025-05-28T09:43:38.051Z" }, + { url = "https://files.pythonhosted.org/packages/4e/9e/d485bff9dee0efa90883bb54590dd8b18067ae3ea34c34a7b91d30cd5d1d/optree-0.16.0-cp312-cp312-win_amd64.whl", hash = "sha256:6ae2bf009f2a6a7c38f69d70eb0d8e9afd7a871b80c8682d98ce8f25cc50df40", size = 315159, upload-time = "2025-05-28T09:43:39.605Z" }, + { url = "https://files.pythonhosted.org/packages/d0/84/da021d0b557518fcb7120954f3d55d50d62b2d44945d000033b238cb9330/optree-0.16.0-cp312-cp312-win_arm64.whl", hash = "sha256:9185e76a826a3e0c10f73917b05e3a79a969e9b6a9e83b26d9b4130fa9d3fc06", size = 307796, upload-time = "2025-05-28T09:43:40.823Z" }, + { url = "https://files.pythonhosted.org/packages/8f/6b/89089d13f9696daf0279d912ea5fa7e4468d8dbe910d283e48a7c0211be3/optree-0.16.0-pp311-pypy311_pp73-macosx_11_0_arm64.whl", hash = "sha256:0dd607bfbf59ecf92b069af18e8a41b0d8628e21f2de5a738fad039d0a89d9d4", size = 345528, upload-time = "2025-05-28T09:44:30.965Z" }, + { url = "https://files.pythonhosted.org/packages/32/43/935d550da1ad78ac9be6043c0b1db9aa50e2604228c1d947411dcbbaf5f5/optree-0.16.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d6f807965bc8ca5e2af453d77f0f6a64cc0ece1420297d194a52f250aa15f4ce", size = 385799, upload-time = "2025-05-28T09:44:32.42Z" }, + { url = "https://files.pythonhosted.org/packages/e7/be/66319fbd4b616cb0fb843ff2c43a95dd2ec7b4d2baf7f7cd115ca62bdb30/optree-0.16.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:2d1698d88016747e01c09121a2c0a8a482236d44ff2369c4420f7c9acb615e46", size = 420612, upload-time = "2025-05-28T09:44:34.6Z" }, + { url = "https://files.pythonhosted.org/packages/bf/11/83b8f451424dfc9121a296358bf797fc65e68302ec9197d9ae537e3cd74a/optree-0.16.0-pp311-pypy311_pp73-win_amd64.whl", hash = "sha256:1c88be69d791fb5bc72f1ead2fb48abe20775fc95356eba09fc79ca84b8924d3", size = 316369, upload-time = "2025-05-28T09:44:36.169Z" }, +] + +[[package]] +name = "overrides" +version = "7.7.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/36/86/b585f53236dec60aba864e050778b25045f857e17f6e5ea0ae95fe80edd2/overrides-7.7.0.tar.gz", hash = "sha256:55158fa3d93b98cc75299b1e67078ad9003ca27945c76162c1c0766d6f91820a", size = 22812, upload-time = "2024-01-27T21:01:33.423Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/2c/ab/fc8290c6a4c722e5514d80f62b2dc4c4df1a68a41d1364e625c35990fcf3/overrides-7.7.0-py3-none-any.whl", hash = "sha256:c7ed9d062f78b8e4c1a7b70bd8796b35ead4d9f510227ef9c5dc7626c60d7e49", size = 17832, upload-time = "2024-01-27T21:01:31.393Z" }, +] + +[[package]] +name = "packaging" +version = "23.2" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/fb/2b/9b9c33ffed44ee921d0967086d653047286054117d584f1b1a7c22ceaf7b/packaging-23.2.tar.gz", hash = "sha256:048fb0e9405036518eaaf48a55953c750c11e1a1b68e0dd1a9d62ed0c092cfc5", size = 146714, upload-time = "2023-10-01T13:50:05.279Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/ec/1a/610693ac4ee14fcdf2d9bf3c493370e4f2ef7ae2e19217d7a237ff42367d/packaging-23.2-py3-none-any.whl", hash = "sha256:8c491190033a9af7e1d931d0b5dacc2ef47509b34dd0de67ed209b5203fc88c7", size = 53011, upload-time = "2023-10-01T13:50:03.745Z" }, +] + +[[package]] +name = "pandas" +version = "1.5.3" +source = { registry = "https://pypi.org/simple" } +resolution-markers = [ + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", +] +dependencies = [ + { name = "numpy", version = "1.24.4", source = { registry = "https://pypi.org/simple" }, marker = "(sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-trustyai') or (sys_platform == 'linux' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (sys_platform == 'linux' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-trustyai')" }, + { name = "python-dateutil", marker = "(sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-trustyai') or (sys_platform == 'linux' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (sys_platform == 'linux' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-trustyai')" }, + { name = "pytz", marker = "(sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-trustyai') or (sys_platform == 'linux' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (sys_platform == 'linux' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-trustyai')" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/74/ee/146cab1ff6d575b54ace8a6a5994048380dc94879b0125b25e62edcb9e52/pandas-1.5.3.tar.gz", hash = "sha256:74a3fd7e5a7ec052f183273dc7b0acd3a863edf7520f5d3a1765c04ffdb3b0b1", size = 5203060, upload-time = "2023-01-19T08:31:39.615Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/e2/24/a26af514113fd5eca2d8fe41ba4f22f70dfe6afefde4a6beb6a203570935/pandas-1.5.3-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:6973549c01ca91ec96199e940495219c887ea815b2083722821f1d7abfa2b4dc", size = 18387750, upload-time = "2023-01-19T08:29:43.119Z" }, + { url = "https://files.pythonhosted.org/packages/53/c9/d2f910dace7ef849b626980d0fd033b9cded36568949c8d560c9630ad2e0/pandas-1.5.3-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:c39a8da13cede5adcd3be1182883aea1c925476f4e84b2807a46e2775306305d", size = 11868668, upload-time = "2023-01-19T08:29:48.733Z" }, + { url = "https://files.pythonhosted.org/packages/b0/be/1843b9aff84b98899663e7cad9f45513dfdd11d69cb5bd85c648aaf6a8d4/pandas-1.5.3-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:f76d097d12c82a535fda9dfe5e8dd4127952b45fea9b0276cb30cca5ea313fbc", size = 10814036, upload-time = "2023-01-19T08:29:54.886Z" }, + { url = "https://files.pythonhosted.org/packages/63/8d/c2bd356b9d4baf1c5cf8d7e251fb4540e87083072c905430da48c2bb31eb/pandas-1.5.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e474390e60ed609cec869b0da796ad94f420bb057d86784191eefc62b65819ae", size = 11374218, upload-time = "2023-01-19T08:30:00.5Z" }, + { url = "https://files.pythonhosted.org/packages/56/73/3351beeb807dca69fcc3c4966bcccc51552bd01549a9b13c04ab00a43f21/pandas-1.5.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:5f2b952406a1588ad4cad5b3f55f520e82e902388a6d5a4a91baa8d38d23c7f6", size = 12017319, upload-time = "2023-01-19T08:30:06.097Z" }, + { url = "https://files.pythonhosted.org/packages/da/6d/1235da14daddaa6e47f74ba0c255358f0ce7a6ee05da8bf8eb49161aa6b5/pandas-1.5.3-cp311-cp311-win_amd64.whl", hash = "sha256:bc4c368f42b551bf72fac35c5128963a171b40dce866fb066540eeaf46faa003", size = 10303385, upload-time = "2023-01-19T08:30:11.148Z" }, +] + +[[package]] +name = "pandas" +version = "2.2.3" +source = { registry = "https://pypi.org/simple" } +resolution-markers = [ + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", +] +dependencies = [ + { name = "numpy", version = "1.26.4", source = { registry = "https://pypi.org/simple" }, marker = "(sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-tensorflow') or (sys_platform == 'linux' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (sys_platform == 'linux' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (sys_platform == 'linux' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform == 'linux' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai')" }, + { name = "numpy", version = "2.2.6", source = { registry = "https://pypi.org/simple" }, marker = "(sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-preferred') or (sys_platform == 'linux' and extra == 'group-9-notebooks-jupyter-datascience-image') or (sys_platform == 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (sys_platform == 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred') or (sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-pytorchcuda') or (sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-pytorchrocm') or (sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-pytorchcuda') or (sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-pytorchrocm') or (sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchcuda') or (sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchrocm') or (sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-tensorflowcuda') or (sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-trustyai') or (sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai')" }, + { name = "python-dateutil", marker = "(sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-preferred') or (sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-tensorflow') or (sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred') or (sys_platform == 'linux' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform == 'linux' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-datascience-image') or (sys_platform == 'linux' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (sys_platform == 'linux' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (sys_platform == 'linux' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (sys_platform == 'linux' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-pytorchcuda') or (sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-pytorchrocm') or (sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-trustyai') or (sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchcuda') or (sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchrocm') or (sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai')" }, + { name = "pytz", marker = "(sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-preferred') or (sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-tensorflow') or (sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred') or (sys_platform == 'linux' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform == 'linux' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-datascience-image') or (sys_platform == 'linux' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (sys_platform == 'linux' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (sys_platform == 'linux' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (sys_platform == 'linux' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-pytorchcuda') or (sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-pytorchrocm') or (sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-trustyai') or (sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchcuda') or (sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchrocm') or (sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai')" }, + { name = "tzdata", marker = "(sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-preferred') or (sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-tensorflow') or (sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred') or (sys_platform == 'linux' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform == 'linux' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-datascience-image') or (sys_platform == 'linux' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (sys_platform == 'linux' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (sys_platform == 'linux' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (sys_platform == 'linux' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-pytorchcuda') or (sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-pytorchrocm') or (sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-trustyai') or (sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchcuda') or (sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchrocm') or (sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai')" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/9c/d6/9f8431bacc2e19dca897724cd097b1bb224a6ad5433784a44b587c7c13af/pandas-2.2.3.tar.gz", hash = "sha256:4f18ba62b61d7e192368b84517265a99b4d7ee8912f8708660fb4a366cc82667", size = 4399213, upload-time = "2024-09-20T13:10:04.827Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/a8/44/d9502bf0ed197ba9bf1103c9867d5904ddcaf869e52329787fc54ed70cc8/pandas-2.2.3-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:66108071e1b935240e74525006034333f98bcdb87ea116de573a6a0dccb6c039", size = 12602222, upload-time = "2024-09-20T13:08:56.254Z" }, + { url = "https://files.pythonhosted.org/packages/52/11/9eac327a38834f162b8250aab32a6781339c69afe7574368fffe46387edf/pandas-2.2.3-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:7c2875855b0ff77b2a64a0365e24455d9990730d6431b9e0ee18ad8acee13dbd", size = 11321274, upload-time = "2024-09-20T13:08:58.645Z" }, + { url = "https://files.pythonhosted.org/packages/45/fb/c4beeb084718598ba19aa9f5abbc8aed8b42f90930da861fcb1acdb54c3a/pandas-2.2.3-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:cd8d0c3be0515c12fed0bdbae072551c8b54b7192c7b1fda0ba56059a0179698", size = 15579836, upload-time = "2024-09-20T19:01:57.571Z" }, + { url = "https://files.pythonhosted.org/packages/cd/5f/4dba1d39bb9c38d574a9a22548c540177f78ea47b32f99c0ff2ec499fac5/pandas-2.2.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c124333816c3a9b03fbeef3a9f230ba9a737e9e5bb4060aa2107a86cc0a497fc", size = 13058505, upload-time = "2024-09-20T13:09:01.501Z" }, + { url = "https://files.pythonhosted.org/packages/b9/57/708135b90391995361636634df1f1130d03ba456e95bcf576fada459115a/pandas-2.2.3-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:63cc132e40a2e084cf01adf0775b15ac515ba905d7dcca47e9a251819c575ef3", size = 16744420, upload-time = "2024-09-20T19:02:00.678Z" }, + { url = "https://files.pythonhosted.org/packages/86/4a/03ed6b7ee323cf30404265c284cee9c65c56a212e0a08d9ee06984ba2240/pandas-2.2.3-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:29401dbfa9ad77319367d36940cd8a0b3a11aba16063e39632d98b0e931ddf32", size = 14440457, upload-time = "2024-09-20T13:09:04.105Z" }, + { url = "https://files.pythonhosted.org/packages/ed/8c/87ddf1fcb55d11f9f847e3c69bb1c6f8e46e2f40ab1a2d2abadb2401b007/pandas-2.2.3-cp311-cp311-win_amd64.whl", hash = "sha256:3fc6873a41186404dad67245896a6e440baacc92f5b716ccd1bc9ed2995ab2c5", size = 11617166, upload-time = "2024-09-20T13:09:06.917Z" }, + { url = "https://files.pythonhosted.org/packages/17/a3/fb2734118db0af37ea7433f57f722c0a56687e14b14690edff0cdb4b7e58/pandas-2.2.3-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:b1d432e8d08679a40e2a6d8b2f9770a5c21793a6f9f47fdd52c5ce1948a5a8a9", size = 12529893, upload-time = "2024-09-20T13:09:09.655Z" }, + { url = "https://files.pythonhosted.org/packages/e1/0c/ad295fd74bfac85358fd579e271cded3ac969de81f62dd0142c426b9da91/pandas-2.2.3-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:a5a1595fe639f5988ba6a8e5bc9649af3baf26df3998a0abe56c02609392e0a4", size = 11363475, upload-time = "2024-09-20T13:09:14.718Z" }, + { url = "https://files.pythonhosted.org/packages/c6/2a/4bba3f03f7d07207481fed47f5b35f556c7441acddc368ec43d6643c5777/pandas-2.2.3-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:5de54125a92bb4d1c051c0659e6fcb75256bf799a732a87184e5ea503965bce3", size = 15188645, upload-time = "2024-09-20T19:02:03.88Z" }, + { url = "https://files.pythonhosted.org/packages/38/f8/d8fddee9ed0d0c0f4a2132c1dfcf0e3e53265055da8df952a53e7eaf178c/pandas-2.2.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:fffb8ae78d8af97f849404f21411c95062db1496aeb3e56f146f0355c9989319", size = 12739445, upload-time = "2024-09-20T13:09:17.621Z" }, + { url = "https://files.pythonhosted.org/packages/20/e8/45a05d9c39d2cea61ab175dbe6a2de1d05b679e8de2011da4ee190d7e748/pandas-2.2.3-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:6dfcb5ee8d4d50c06a51c2fffa6cff6272098ad6540aed1a76d15fb9318194d8", size = 16359235, upload-time = "2024-09-20T19:02:07.094Z" }, + { url = "https://files.pythonhosted.org/packages/1d/99/617d07a6a5e429ff90c90da64d428516605a1ec7d7bea494235e1c3882de/pandas-2.2.3-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:062309c1b9ea12a50e8ce661145c6aab431b1e99530d3cd60640e255778bd43a", size = 14056756, upload-time = "2024-09-20T13:09:20.474Z" }, + { url = "https://files.pythonhosted.org/packages/29/d4/1244ab8edf173a10fd601f7e13b9566c1b525c4f365d6bee918e68381889/pandas-2.2.3-cp312-cp312-win_amd64.whl", hash = "sha256:59ef3764d0fe818125a5097d2ae867ca3fa64df032331b7e0917cf5d7bf66b13", size = 11504248, upload-time = "2024-09-20T13:09:23.137Z" }, +] + +[[package]] +name = "pandocfilters" +version = "1.5.1" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/70/6f/3dd4940bbe001c06a65f88e36bad298bc7a0de5036115639926b0c5c0458/pandocfilters-1.5.1.tar.gz", hash = "sha256:002b4a555ee4ebc03f8b66307e287fa492e4a77b4ea14d3f934328297bb4939e", size = 8454, upload-time = "2024-01-18T20:08:13.726Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/ef/af/4fbc8cab944db5d21b7e2a5b8e9211a03a79852b1157e2c102fcc61ac440/pandocfilters-1.5.1-py2.py3-none-any.whl", hash = "sha256:93be382804a9cdb0a7267585f157e5d1731bbe5545a85b268d6f5fe6232de2bc", size = 8663, upload-time = "2024-01-18T20:08:11.28Z" }, +] + +[[package]] +name = "papermill" +version = "2.6.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "aiohttp", marker = "python_full_version >= '3.12' and sys_platform == 'linux'" }, + { name = "ansicolors", marker = "sys_platform == 'linux'" }, + { name = "click", marker = "sys_platform == 'linux'" }, + { name = "entrypoints", marker = "sys_platform == 'linux'" }, + { name = "nbclient", marker = "sys_platform == 'linux'" }, + { name = "nbformat", marker = "sys_platform == 'linux'" }, + { name = "pyyaml", marker = "sys_platform == 'linux'" }, + { name = "requests", marker = "sys_platform == 'linux'" }, + { name = "tenacity", marker = "sys_platform == 'linux'" }, + { name = "tqdm", marker = "sys_platform == 'linux'" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/99/8d/d843b1739b966d47dae02eb9b705713d810e5b283ea7ad24bf9b3b6bf99e/papermill-2.6.0.tar.gz", hash = "sha256:9fe2a91912fd578f391b4cc8d6d105e73124dcd0cde2a43c3c4a1c77ac88ea24", size = 78342, upload-time = "2024-04-26T21:48:18.788Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/61/55/83ce641bc61a70cc0721af6f50154ecaaccedfbdbc27366c1755a2a34972/papermill-2.6.0-py3-none-any.whl", hash = "sha256:0f09da6ef709f3f14dde77cb1af052d05b14019189869affff374c9e612f2dd5", size = 38564, upload-time = "2024-04-26T21:48:15.64Z" }, +] + +[[package]] +name = "paramiko" +version = "3.5.1" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "bcrypt", marker = "sys_platform == 'linux'" }, + { name = "cryptography", version = "43.0.3", source = { registry = "https://pypi.org/simple" }, marker = "(sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base') or (sys_platform == 'linux' and extra == 'group-9-notebooks-jupyter-datascience-image') or (sys_platform == 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (sys_platform == 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (sys_platform == 'linux' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (sys_platform == 'linux' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (sys_platform == 'linux' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai')" }, + { name = "cryptography", version = "44.0.1", source = { registry = "https://pypi.org/simple" }, marker = "(sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-trustyai') or (sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-elyra-trustyai') or (sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-elyra-trustyai') or (sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-trustyai-image') or (sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image') or (sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-trustyai')" }, + { name = "pynacl", marker = "sys_platform == 'linux'" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/7d/15/ad6ce226e8138315f2451c2aeea985bf35ee910afb477bae7477dc3a8f3b/paramiko-3.5.1.tar.gz", hash = "sha256:b2c665bc45b2b215bd7d7f039901b14b067da00f3a11e6640995fd58f2664822", size = 1566110, upload-time = "2025-02-04T02:37:59.783Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/15/f8/c7bd0ef12954a81a1d3cea60a13946bd9a49a0036a5927770c461eade7ae/paramiko-3.5.1-py3-none-any.whl", hash = "sha256:43b9a0501fc2b5e70680388d9346cf252cfb7d00b0667c39e80eb43a408b8f61", size = 227298, upload-time = "2025-02-04T02:37:57.672Z" }, +] + +[[package]] +name = "parso" +version = "0.8.4" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/66/94/68e2e17afaa9169cf6412ab0f28623903be73d1b32e208d9e8e541bb086d/parso-0.8.4.tar.gz", hash = "sha256:eb3a7b58240fb99099a345571deecc0f9540ea5f4dd2fe14c2a99d6b281ab92d", size = 400609, upload-time = "2024-04-05T09:43:55.897Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/c6/ac/dac4a63f978e4dcb3c6d3a78c4d8e0192a113d288502a1216950c41b1027/parso-0.8.4-py2.py3-none-any.whl", hash = "sha256:a418670a20291dacd2dddc80c377c5c3791378ee1e8d12bffc35420643d43f18", size = 103650, upload-time = "2024-04-05T09:43:53.299Z" }, +] + +[[package]] +name = "pathspec" +version = "0.12.1" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/ca/bc/f35b8446f4531a7cb215605d100cd88b7ac6f44ab3fc94870c120ab3adbf/pathspec-0.12.1.tar.gz", hash = "sha256:a482d51503a1ab33b1c67a6c3813a26953dbdc71c31dacaef9a838c4e29f5712", size = 51043, upload-time = "2023-12-10T22:30:45Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/cc/20/ff623b09d963f88bfde16306a54e12ee5ea43e9b597108672ff3a408aad6/pathspec-0.12.1-py3-none-any.whl", hash = "sha256:a0d503e138a4c123b27490a4f7beda6a01c6f288df0e4a8b79c7eb0dc7b4cc08", size = 31191, upload-time = "2023-12-10T22:30:43.14Z" }, +] + +[[package]] +name = "pbr" +version = "6.1.1" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "setuptools", marker = "sys_platform == 'linux' or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai')" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/01/d2/510cc0d218e753ba62a1bc1434651db3cd797a9716a0a66cc714cb4f0935/pbr-6.1.1.tar.gz", hash = "sha256:93ea72ce6989eb2eed99d0f75721474f69ad88128afdef5ac377eb797c4bf76b", size = 125702, upload-time = "2025-02-04T14:28:06.514Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/47/ac/684d71315abc7b1214d59304e23a982472967f6bf4bde5a98f1503f648dc/pbr-6.1.1-py2.py3-none-any.whl", hash = "sha256:38d4daea5d9fa63b3f626131b9d34947fd0c8be9b05a29276870580050a25a76", size = 108997, upload-time = "2025-02-04T14:28:03.168Z" }, +] + +[[package]] +name = "pexpect" +version = "4.9.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "ptyprocess", marker = "sys_platform == 'linux'" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/42/92/cc564bf6381ff43ce1f4d06852fc19a2f11d180f23dc32d9588bee2f149d/pexpect-4.9.0.tar.gz", hash = "sha256:ee7d41123f3c9911050ea2c2dac107568dc43b2d3b0c7557a33212c398ead30f", size = 166450, upload-time = "2023-11-25T09:07:26.339Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/9e/c3/059298687310d527a58bb01f3b1965787ee3b40dce76752eda8b44e9a2c5/pexpect-4.9.0-py2.py3-none-any.whl", hash = "sha256:7236d1e080e4936be2dc3e326cec0af72acf9212a7e1d060210e70a47e253523", size = 63772, upload-time = "2023-11-25T06:56:14.81Z" }, +] + +[[package]] +name = "pillow" +version = "11.2.1" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/af/cb/bb5c01fcd2a69335b86c22142b2bccfc3464087efb7fd382eee5ffc7fdf7/pillow-11.2.1.tar.gz", hash = "sha256:a64dd61998416367b7ef979b73d3a85853ba9bec4c2925f74e588879a58716b6", size = 47026707, upload-time = "2025-04-12T17:50:03.289Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/68/08/3fbf4b98924c73037a8e8b4c2c774784805e0fb4ebca6c5bb60795c40125/pillow-11.2.1-cp311-cp311-macosx_10_10_x86_64.whl", hash = "sha256:35ca289f712ccfc699508c4658a1d14652e8033e9b69839edf83cbdd0ba39e70", size = 3198450, upload-time = "2025-04-12T17:47:37.135Z" }, + { url = "https://files.pythonhosted.org/packages/84/92/6505b1af3d2849d5e714fc75ba9e69b7255c05ee42383a35a4d58f576b16/pillow-11.2.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:e0409af9f829f87a2dfb7e259f78f317a5351f2045158be321fd135973fff7bf", size = 3030550, upload-time = "2025-04-12T17:47:39.345Z" }, + { url = "https://files.pythonhosted.org/packages/3c/8c/ac2f99d2a70ff966bc7eb13dacacfaab57c0549b2ffb351b6537c7840b12/pillow-11.2.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d4e5c5edee874dce4f653dbe59db7c73a600119fbea8d31f53423586ee2aafd7", size = 4415018, upload-time = "2025-04-12T17:47:41.128Z" }, + { url = "https://files.pythonhosted.org/packages/1f/e3/0a58b5d838687f40891fff9cbaf8669f90c96b64dc8f91f87894413856c6/pillow-11.2.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b93a07e76d13bff9444f1a029e0af2964e654bfc2e2c2d46bfd080df5ad5f3d8", size = 4498006, upload-time = "2025-04-12T17:47:42.912Z" }, + { url = "https://files.pythonhosted.org/packages/21/f5/6ba14718135f08fbfa33308efe027dd02b781d3f1d5c471444a395933aac/pillow-11.2.1-cp311-cp311-manylinux_2_28_aarch64.whl", hash = "sha256:e6def7eed9e7fa90fde255afaf08060dc4b343bbe524a8f69bdd2a2f0018f600", size = 4517773, upload-time = "2025-04-12T17:47:44.611Z" }, + { url = "https://files.pythonhosted.org/packages/20/f2/805ad600fc59ebe4f1ba6129cd3a75fb0da126975c8579b8f57abeb61e80/pillow-11.2.1-cp311-cp311-manylinux_2_28_x86_64.whl", hash = "sha256:8f4f3724c068be008c08257207210c138d5f3731af6c155a81c2b09a9eb3a788", size = 4607069, upload-time = "2025-04-12T17:47:46.46Z" }, + { url = "https://files.pythonhosted.org/packages/71/6b/4ef8a288b4bb2e0180cba13ca0a519fa27aa982875882392b65131401099/pillow-11.2.1-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:a0a6709b47019dff32e678bc12c63008311b82b9327613f534e496dacaefb71e", size = 4583460, upload-time = "2025-04-12T17:47:49.255Z" }, + { url = "https://files.pythonhosted.org/packages/62/ae/f29c705a09cbc9e2a456590816e5c234382ae5d32584f451c3eb41a62062/pillow-11.2.1-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:f6b0c664ccb879109ee3ca702a9272d877f4fcd21e5eb63c26422fd6e415365e", size = 4661304, upload-time = "2025-04-12T17:47:51.067Z" }, + { url = "https://files.pythonhosted.org/packages/6e/1a/c8217b6f2f73794a5e219fbad087701f412337ae6dbb956db37d69a9bc43/pillow-11.2.1-cp311-cp311-win32.whl", hash = "sha256:cc5d875d56e49f112b6def6813c4e3d3036d269c008bf8aef72cd08d20ca6df6", size = 2331809, upload-time = "2025-04-12T17:47:54.425Z" }, + { url = "https://files.pythonhosted.org/packages/e2/72/25a8f40170dc262e86e90f37cb72cb3de5e307f75bf4b02535a61afcd519/pillow-11.2.1-cp311-cp311-win_amd64.whl", hash = "sha256:0f5c7eda47bf8e3c8a283762cab94e496ba977a420868cb819159980b6709193", size = 2676338, upload-time = "2025-04-12T17:47:56.535Z" }, + { url = "https://files.pythonhosted.org/packages/06/9e/76825e39efee61efea258b479391ca77d64dbd9e5804e4ad0fa453b4ba55/pillow-11.2.1-cp311-cp311-win_arm64.whl", hash = "sha256:4d375eb838755f2528ac8cbc926c3e31cc49ca4ad0cf79cff48b20e30634a4a7", size = 2414918, upload-time = "2025-04-12T17:47:58.217Z" }, + { url = "https://files.pythonhosted.org/packages/c7/40/052610b15a1b8961f52537cc8326ca6a881408bc2bdad0d852edeb6ed33b/pillow-11.2.1-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:78afba22027b4accef10dbd5eed84425930ba41b3ea0a86fa8d20baaf19d807f", size = 3190185, upload-time = "2025-04-12T17:48:00.417Z" }, + { url = "https://files.pythonhosted.org/packages/e5/7e/b86dbd35a5f938632093dc40d1682874c33dcfe832558fc80ca56bfcb774/pillow-11.2.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:78092232a4ab376a35d68c4e6d5e00dfd73454bd12b230420025fbe178ee3b0b", size = 3030306, upload-time = "2025-04-12T17:48:02.391Z" }, + { url = "https://files.pythonhosted.org/packages/a4/5c/467a161f9ed53e5eab51a42923c33051bf8d1a2af4626ac04f5166e58e0c/pillow-11.2.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:25a5f306095c6780c52e6bbb6109624b95c5b18e40aab1c3041da3e9e0cd3e2d", size = 4416121, upload-time = "2025-04-12T17:48:04.554Z" }, + { url = "https://files.pythonhosted.org/packages/62/73/972b7742e38ae0e2ac76ab137ca6005dcf877480da0d9d61d93b613065b4/pillow-11.2.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:0c7b29dbd4281923a2bfe562acb734cee96bbb129e96e6972d315ed9f232bef4", size = 4501707, upload-time = "2025-04-12T17:48:06.831Z" }, + { url = "https://files.pythonhosted.org/packages/e4/3a/427e4cb0b9e177efbc1a84798ed20498c4f233abde003c06d2650a6d60cb/pillow-11.2.1-cp312-cp312-manylinux_2_28_aarch64.whl", hash = "sha256:3e645b020f3209a0181a418bffe7b4a93171eef6c4ef6cc20980b30bebf17b7d", size = 4522921, upload-time = "2025-04-12T17:48:09.229Z" }, + { url = "https://files.pythonhosted.org/packages/fe/7c/d8b1330458e4d2f3f45d9508796d7caf0c0d3764c00c823d10f6f1a3b76d/pillow-11.2.1-cp312-cp312-manylinux_2_28_x86_64.whl", hash = "sha256:b2dbea1012ccb784a65349f57bbc93730b96e85b42e9bf7b01ef40443db720b4", size = 4612523, upload-time = "2025-04-12T17:48:11.631Z" }, + { url = "https://files.pythonhosted.org/packages/b3/2f/65738384e0b1acf451de5a573d8153fe84103772d139e1e0bdf1596be2ea/pillow-11.2.1-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:da3104c57bbd72948d75f6a9389e6727d2ab6333c3617f0a89d72d4940aa0443", size = 4587836, upload-time = "2025-04-12T17:48:13.592Z" }, + { url = "https://files.pythonhosted.org/packages/6a/c5/e795c9f2ddf3debb2dedd0df889f2fe4b053308bb59a3cc02a0cd144d641/pillow-11.2.1-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:598174aef4589af795f66f9caab87ba4ff860ce08cd5bb447c6fc553ffee603c", size = 4669390, upload-time = "2025-04-12T17:48:15.938Z" }, + { url = "https://files.pythonhosted.org/packages/96/ae/ca0099a3995976a9fce2f423166f7bff9b12244afdc7520f6ed38911539a/pillow-11.2.1-cp312-cp312-win32.whl", hash = "sha256:1d535df14716e7f8776b9e7fee118576d65572b4aad3ed639be9e4fa88a1cad3", size = 2332309, upload-time = "2025-04-12T17:48:17.885Z" }, + { url = "https://files.pythonhosted.org/packages/7c/18/24bff2ad716257fc03da964c5e8f05d9790a779a8895d6566e493ccf0189/pillow-11.2.1-cp312-cp312-win_amd64.whl", hash = "sha256:14e33b28bf17c7a38eede290f77db7c664e4eb01f7869e37fa98a5aa95978941", size = 2676768, upload-time = "2025-04-12T17:48:19.655Z" }, + { url = "https://files.pythonhosted.org/packages/da/bb/e8d656c9543276517ee40184aaa39dcb41e683bca121022f9323ae11b39d/pillow-11.2.1-cp312-cp312-win_arm64.whl", hash = "sha256:21e1470ac9e5739ff880c211fc3af01e3ae505859392bf65458c224d0bf283eb", size = 2415087, upload-time = "2025-04-12T17:48:21.991Z" }, + { url = "https://files.pythonhosted.org/packages/a4/ad/2613c04633c7257d9481ab21d6b5364b59fc5d75faafd7cb8693523945a3/pillow-11.2.1-pp311-pypy311_pp73-macosx_10_15_x86_64.whl", hash = "sha256:80f1df8dbe9572b4b7abdfa17eb5d78dd620b1d55d9e25f834efdbee872d3aed", size = 3181734, upload-time = "2025-04-12T17:49:46.789Z" }, + { url = "https://files.pythonhosted.org/packages/a4/fd/dcdda4471ed667de57bb5405bb42d751e6cfdd4011a12c248b455c778e03/pillow-11.2.1-pp311-pypy311_pp73-macosx_11_0_arm64.whl", hash = "sha256:ea926cfbc3957090becbcbbb65ad177161a2ff2ad578b5a6ec9bb1e1cd78753c", size = 2999841, upload-time = "2025-04-12T17:49:48.812Z" }, + { url = "https://files.pythonhosted.org/packages/ac/89/8a2536e95e77432833f0db6fd72a8d310c8e4272a04461fb833eb021bf94/pillow-11.2.1-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:738db0e0941ca0376804d4de6a782c005245264edaa253ffce24e5a15cbdc7bd", size = 3437470, upload-time = "2025-04-12T17:49:50.831Z" }, + { url = "https://files.pythonhosted.org/packages/9d/8f/abd47b73c60712f88e9eda32baced7bfc3e9bd6a7619bb64b93acff28c3e/pillow-11.2.1-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9db98ab6565c69082ec9b0d4e40dd9f6181dab0dd236d26f7a50b8b9bfbd5076", size = 3460013, upload-time = "2025-04-12T17:49:53.278Z" }, + { url = "https://files.pythonhosted.org/packages/f6/20/5c0a0aa83b213b7a07ec01e71a3d6ea2cf4ad1d2c686cc0168173b6089e7/pillow-11.2.1-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl", hash = "sha256:036e53f4170e270ddb8797d4c590e6dd14d28e15c7da375c18978045f7e6c37b", size = 3527165, upload-time = "2025-04-12T17:49:55.164Z" }, + { url = "https://files.pythonhosted.org/packages/58/0e/2abab98a72202d91146abc839e10c14f7cf36166f12838ea0c4db3ca6ecb/pillow-11.2.1-pp311-pypy311_pp73-manylinux_2_28_x86_64.whl", hash = "sha256:14f73f7c291279bd65fda51ee87affd7c1e097709f7fdd0188957a16c264601f", size = 3571586, upload-time = "2025-04-12T17:49:57.171Z" }, + { url = "https://files.pythonhosted.org/packages/21/2c/5e05f58658cf49b6667762cca03d6e7d85cededde2caf2ab37b81f80e574/pillow-11.2.1-pp311-pypy311_pp73-win_amd64.whl", hash = "sha256:208653868d5c9ecc2b327f9b9ef34e0e42a4cdd172c2988fd81d62d2bc9bc044", size = 2674751, upload-time = "2025-04-12T17:49:59.628Z" }, +] + +[[package]] +name = "platformdirs" +version = "4.3.7" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/b6/2d/7d512a3913d60623e7eb945c6d1b4f0bddf1d0b7ada5225274c87e5b53d1/platformdirs-4.3.7.tar.gz", hash = "sha256:eb437d586b6a0986388f0d6f74aa0cde27b48d0e3d66843640bfb6bdcdb6e351", size = 21291, upload-time = "2025-03-19T20:36:10.989Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/6d/45/59578566b3275b8fd9157885918fcd0c4d74162928a5310926887b856a51/platformdirs-4.3.7-py3-none-any.whl", hash = "sha256:a03875334331946f13c549dbd8f4bac7a13a50a895a0eb1e8c6a8ace80d40a94", size = 18499, upload-time = "2025-03-19T20:36:09.038Z" }, +] + +[[package]] +name = "plotly" +version = "6.0.1" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "narwhals", marker = "sys_platform == 'linux'" }, + { name = "packaging", marker = "sys_platform == 'linux'" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/c7/cc/e41b5f697ae403f0b50e47b7af2e36642a193085f553bf7cc1169362873a/plotly-6.0.1.tar.gz", hash = "sha256:dd8400229872b6e3c964b099be699f8d00c489a974f2cfccfad5e8240873366b", size = 8094643, upload-time = "2025-03-17T15:02:23.994Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/02/65/ad2bc85f7377f5cfba5d4466d5474423a3fb7f6a97fd807c06f92dd3e721/plotly-6.0.1-py3-none-any.whl", hash = "sha256:4714db20fea57a435692c548a4eb4fae454f7daddf15f8d8ba7e1045681d7768", size = 14805757, upload-time = "2025-03-17T15:02:18.73Z" }, +] + +[[package]] +name = "pluggy" +version = "1.5.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/96/2d/02d4312c973c6050a18b314a5ad0b3210edb65a906f868e31c111dede4a6/pluggy-1.5.0.tar.gz", hash = "sha256:2cffa88e94fdc978c4c574f15f9e59b7f4201d439195c3715ca9e2486f1d0cf1", size = 67955, upload-time = "2024-04-20T21:34:42.531Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/88/5f/e351af9a41f866ac3f1fac4ca0613908d9a41741cfcf2228f4ad853b697d/pluggy-1.5.0-py3-none-any.whl", hash = "sha256:44e1ad92c8ca002de6377e165f3e0f1be63266ab4d554740532335b9d75ea669", size = 20556, upload-time = "2024-04-20T21:34:40.434Z" }, +] + +[[package]] +name = "podman" +version = "5.4.0.1" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "requests", marker = "sys_platform == 'linux' or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai')" }, + { name = "urllib3", marker = "sys_platform == 'linux' or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai')" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/fa/5c/ff701e438360a526a728eae3c18ee439c0875e4b937947f1cd04497ae17e/podman-5.4.0.1.tar.gz", hash = "sha256:ee537aaa44ba530fad7cd939d886a7632f9f7018064e7831e8cb614c54cb1789", size = 68926, upload-time = "2025-02-19T16:59:52.064Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/8e/38/6d4416f3ec8dc18149847bbb31cc54af20de063844029b00fb0c0d4c533c/podman-5.4.0.1-py3-none-any.whl", hash = "sha256:abd32e49a66bf18a680d9a0ac3989a3f4a3cc7293bc2a5060653276d8ee712f4", size = 84516, upload-time = "2025-02-19T16:59:50.326Z" }, +] + +[[package]] +name = "pre-commit" +version = "4.2.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "cfgv", marker = "sys_platform == 'linux' or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai')" }, + { name = "identify", marker = "sys_platform == 'linux' or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai')" }, + { name = "nodeenv", marker = "sys_platform == 'linux' or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai')" }, + { name = "pyyaml", marker = "sys_platform == 'linux' or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai')" }, + { name = "virtualenv", marker = "sys_platform == 'linux' or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai')" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/08/39/679ca9b26c7bb2999ff122d50faa301e49af82ca9c066ec061cfbc0c6784/pre_commit-4.2.0.tar.gz", hash = "sha256:601283b9757afd87d40c4c4a9b2b5de9637a8ea02eaff7adc2d0fb4e04841146", size = 193424, upload-time = "2025-03-18T21:35:20.987Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/88/74/a88bf1b1efeae488a0c0b7bdf71429c313722d1fc0f377537fbe554e6180/pre_commit-4.2.0-py2.py3-none-any.whl", hash = "sha256:a009ca7205f1eb497d10b845e52c838a98b6cdd2102a6c8e4540e94ee75c58bd", size = 220707, upload-time = "2025-03-18T21:35:19.343Z" }, +] + +[[package]] +name = "prometheus-client" +version = "0.22.1" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/5e/cf/40dde0a2be27cc1eb41e333d1a674a74ce8b8b0457269cc640fd42b07cf7/prometheus_client-0.22.1.tar.gz", hash = "sha256:190f1331e783cf21eb60bca559354e0a4d4378facecf78f5428c39b675d20d28", size = 69746, upload-time = "2025-06-02T14:29:01.152Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/32/ae/ec06af4fe3ee72d16973474f122541746196aaa16cea6f66d18b963c6177/prometheus_client-0.22.1-py3-none-any.whl", hash = "sha256:cca895342e308174341b2cbf99a56bef291fbc0ef7b9e5412a0f26d653ba7094", size = 58694, upload-time = "2025-06-02T14:29:00.068Z" }, +] + +[[package]] +name = "prompt-toolkit" +version = "3.0.50" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "wcwidth", marker = "sys_platform == 'linux'" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/a1/e1/bd15cb8ffdcfeeb2bdc215de3c3cffca11408d829e4b8416dcfe71ba8854/prompt_toolkit-3.0.50.tar.gz", hash = "sha256:544748f3860a2623ca5cd6d2795e7a14f3d0e1c3c9728359013f79877fc89bab", size = 429087, upload-time = "2025-01-20T15:55:35.072Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/e4/ea/d836f008d33151c7a1f62caf3d8dd782e4d15f6a43897f64480c2b8de2ad/prompt_toolkit-3.0.50-py3-none-any.whl", hash = "sha256:9b6427eb19e479d98acff65196a307c555eb567989e6d88ebbb1b509d9779198", size = 387816, upload-time = "2025-01-20T15:55:29.98Z" }, +] + +[[package]] +name = "propcache" +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/80/8d/e8b436717ab9c2cfc23b116d2c297305aa4cd8339172a456d61ebf5669b8/propcache-0.3.2-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:0b8d2f607bd8f80ddc04088bc2a037fdd17884a6fcadc47a96e334d72f3717be", size = 74207, upload-time = "2025-06-09T22:54:05.399Z" }, + { url = "https://files.pythonhosted.org/packages/d6/29/1e34000e9766d112171764b9fa3226fa0153ab565d0c242c70e9945318a7/propcache-0.3.2-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:06766d8f34733416e2e34f46fea488ad5d60726bb9481d3cddf89a6fa2d9603f", size = 43648, upload-time = "2025-06-09T22:54:08.023Z" }, + { url = "https://files.pythonhosted.org/packages/46/92/1ad5af0df781e76988897da39b5f086c2bf0f028b7f9bd1f409bb05b6874/propcache-0.3.2-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:a2dc1f4a1df4fecf4e6f68013575ff4af84ef6f478fe5344317a65d38a8e6dc9", size = 43496, upload-time = "2025-06-09T22:54:09.228Z" }, + { url = "https://files.pythonhosted.org/packages/b3/ce/e96392460f9fb68461fabab3e095cb00c8ddf901205be4eae5ce246e5b7e/propcache-0.3.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:be29c4f4810c5789cf10ddf6af80b041c724e629fa51e308a7a0fb19ed1ef7bf", size = 217288, upload-time = "2025-06-09T22:54:10.466Z" }, + { url = "https://files.pythonhosted.org/packages/c5/2a/866726ea345299f7ceefc861a5e782b045545ae6940851930a6adaf1fca6/propcache-0.3.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:59d61f6970ecbd8ff2e9360304d5c8876a6abd4530cb752c06586849ac8a9dc9", size = 227456, upload-time = "2025-06-09T22:54:11.828Z" }, + { url = "https://files.pythonhosted.org/packages/de/03/07d992ccb6d930398689187e1b3c718339a1c06b8b145a8d9650e4726166/propcache-0.3.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:62180e0b8dbb6b004baec00a7983e4cc52f5ada9cd11f48c3528d8cfa7b96a66", size = 225429, upload-time = "2025-06-09T22:54:13.823Z" }, + { url = "https://files.pythonhosted.org/packages/5d/e6/116ba39448753b1330f48ab8ba927dcd6cf0baea8a0ccbc512dfb49ba670/propcache-0.3.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c144ca294a204c470f18cf4c9d78887810d04a3e2fbb30eea903575a779159df", size = 213472, upload-time = "2025-06-09T22:54:15.232Z" }, + { url = "https://files.pythonhosted.org/packages/a6/85/f01f5d97e54e428885a5497ccf7f54404cbb4f906688a1690cd51bf597dc/propcache-0.3.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:c5c2a784234c28854878d68978265617aa6dc0780e53d44b4d67f3651a17a9a2", size = 204480, upload-time = "2025-06-09T22:54:17.104Z" }, + { url = "https://files.pythonhosted.org/packages/e3/79/7bf5ab9033b8b8194cc3f7cf1aaa0e9c3256320726f64a3e1f113a812dce/propcache-0.3.2-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:5745bc7acdafa978ca1642891b82c19238eadc78ba2aaa293c6863b304e552d7", size = 214530, upload-time = "2025-06-09T22:54:18.512Z" }, + { url = "https://files.pythonhosted.org/packages/31/0b/bd3e0c00509b609317df4a18e6b05a450ef2d9a963e1d8bc9c9415d86f30/propcache-0.3.2-cp311-cp311-musllinux_1_2_armv7l.whl", hash = "sha256:c0075bf773d66fa8c9d41f66cc132ecc75e5bb9dd7cce3cfd14adc5ca184cb95", size = 205230, upload-time = "2025-06-09T22:54:19.947Z" }, + { url = "https://files.pythonhosted.org/packages/7a/23/fae0ff9b54b0de4e819bbe559508da132d5683c32d84d0dc2ccce3563ed4/propcache-0.3.2-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:5f57aa0847730daceff0497f417c9de353c575d8da3579162cc74ac294c5369e", size = 206754, upload-time = "2025-06-09T22:54:21.716Z" }, + { url = "https://files.pythonhosted.org/packages/b7/7f/ad6a3c22630aaa5f618b4dc3c3598974a72abb4c18e45a50b3cdd091eb2f/propcache-0.3.2-cp311-cp311-musllinux_1_2_ppc64le.whl", hash = "sha256:eef914c014bf72d18efb55619447e0aecd5fb7c2e3fa7441e2e5d6099bddff7e", size = 218430, upload-time = "2025-06-09T22:54:23.17Z" }, + { url = "https://files.pythonhosted.org/packages/5b/2c/ba4f1c0e8a4b4c75910742f0d333759d441f65a1c7f34683b4a74c0ee015/propcache-0.3.2-cp311-cp311-musllinux_1_2_s390x.whl", hash = "sha256:2a4092e8549031e82facf3decdbc0883755d5bbcc62d3aea9d9e185549936dcf", size = 223884, upload-time = "2025-06-09T22:54:25.539Z" }, + { url = "https://files.pythonhosted.org/packages/88/e4/ebe30fc399e98572019eee82ad0caf512401661985cbd3da5e3140ffa1b0/propcache-0.3.2-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:85871b050f174bc0bfb437efbdb68aaf860611953ed12418e4361bc9c392749e", size = 211480, upload-time = "2025-06-09T22:54:26.892Z" }, + { url = "https://files.pythonhosted.org/packages/96/0a/7d5260b914e01d1d0906f7f38af101f8d8ed0dc47426219eeaf05e8ea7c2/propcache-0.3.2-cp311-cp311-win32.whl", hash = "sha256:36c8d9b673ec57900c3554264e630d45980fd302458e4ac801802a7fd2ef7897", size = 37757, upload-time = "2025-06-09T22:54:28.241Z" }, + { url = "https://files.pythonhosted.org/packages/e1/2d/89fe4489a884bc0da0c3278c552bd4ffe06a1ace559db5ef02ef24ab446b/propcache-0.3.2-cp311-cp311-win_amd64.whl", hash = "sha256:e53af8cb6a781b02d2ea079b5b853ba9430fcbe18a8e3ce647d5982a3ff69f39", size = 41500, upload-time = "2025-06-09T22:54:29.4Z" }, + { url = "https://files.pythonhosted.org/packages/a8/42/9ca01b0a6f48e81615dca4765a8f1dd2c057e0540f6116a27dc5ee01dfb6/propcache-0.3.2-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:8de106b6c84506b31c27168582cd3cb3000a6412c16df14a8628e5871ff83c10", size = 73674, upload-time = "2025-06-09T22:54:30.551Z" }, + { url = "https://files.pythonhosted.org/packages/af/6e/21293133beb550f9c901bbece755d582bfaf2176bee4774000bd4dd41884/propcache-0.3.2-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:28710b0d3975117239c76600ea351934ac7b5ff56e60953474342608dbbb6154", size = 43570, upload-time = "2025-06-09T22:54:32.296Z" }, + { url = "https://files.pythonhosted.org/packages/0c/c8/0393a0a3a2b8760eb3bde3c147f62b20044f0ddac81e9d6ed7318ec0d852/propcache-0.3.2-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:ce26862344bdf836650ed2487c3d724b00fbfec4233a1013f597b78c1cb73615", size = 43094, upload-time = "2025-06-09T22:54:33.929Z" }, + { url = "https://files.pythonhosted.org/packages/37/2c/489afe311a690399d04a3e03b069225670c1d489eb7b044a566511c1c498/propcache-0.3.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:bca54bd347a253af2cf4544bbec232ab982f4868de0dd684246b67a51bc6b1db", size = 226958, upload-time = "2025-06-09T22:54:35.186Z" }, + { url = "https://files.pythonhosted.org/packages/9d/ca/63b520d2f3d418c968bf596839ae26cf7f87bead026b6192d4da6a08c467/propcache-0.3.2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:55780d5e9a2ddc59711d727226bb1ba83a22dd32f64ee15594b9392b1f544eb1", size = 234894, upload-time = "2025-06-09T22:54:36.708Z" }, + { url = "https://files.pythonhosted.org/packages/11/60/1d0ed6fff455a028d678df30cc28dcee7af77fa2b0e6962ce1df95c9a2a9/propcache-0.3.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:035e631be25d6975ed87ab23153db6a73426a48db688070d925aa27e996fe93c", size = 233672, upload-time = "2025-06-09T22:54:38.062Z" }, + { url = "https://files.pythonhosted.org/packages/37/7c/54fd5301ef38505ab235d98827207176a5c9b2aa61939b10a460ca53e123/propcache-0.3.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ee6f22b6eaa39297c751d0e80c0d3a454f112f5c6481214fcf4c092074cecd67", size = 224395, upload-time = "2025-06-09T22:54:39.634Z" }, + { url = "https://files.pythonhosted.org/packages/ee/1a/89a40e0846f5de05fdc6779883bf46ba980e6df4d2ff8fb02643de126592/propcache-0.3.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:7ca3aee1aa955438c4dba34fc20a9f390e4c79967257d830f137bd5a8a32ed3b", size = 212510, upload-time = "2025-06-09T22:54:41.565Z" }, + { url = "https://files.pythonhosted.org/packages/5e/33/ca98368586c9566a6b8d5ef66e30484f8da84c0aac3f2d9aec6d31a11bd5/propcache-0.3.2-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:7a4f30862869fa2b68380d677cc1c5fcf1e0f2b9ea0cf665812895c75d0ca3b8", size = 222949, upload-time = "2025-06-09T22:54:43.038Z" }, + { url = "https://files.pythonhosted.org/packages/ba/11/ace870d0aafe443b33b2f0b7efdb872b7c3abd505bfb4890716ad7865e9d/propcache-0.3.2-cp312-cp312-musllinux_1_2_armv7l.whl", hash = "sha256:b77ec3c257d7816d9f3700013639db7491a434644c906a2578a11daf13176251", size = 217258, upload-time = "2025-06-09T22:54:44.376Z" }, + { url = "https://files.pythonhosted.org/packages/5b/d2/86fd6f7adffcfc74b42c10a6b7db721d1d9ca1055c45d39a1a8f2a740a21/propcache-0.3.2-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:cab90ac9d3f14b2d5050928483d3d3b8fb6b4018893fc75710e6aa361ecb2474", size = 213036, upload-time = "2025-06-09T22:54:46.243Z" }, + { url = "https://files.pythonhosted.org/packages/07/94/2d7d1e328f45ff34a0a284cf5a2847013701e24c2a53117e7c280a4316b3/propcache-0.3.2-cp312-cp312-musllinux_1_2_ppc64le.whl", hash = "sha256:0b504d29f3c47cf6b9e936c1852246c83d450e8e063d50562115a6be6d3a2535", size = 227684, upload-time = "2025-06-09T22:54:47.63Z" }, + { url = "https://files.pythonhosted.org/packages/b7/05/37ae63a0087677e90b1d14710e532ff104d44bc1efa3b3970fff99b891dc/propcache-0.3.2-cp312-cp312-musllinux_1_2_s390x.whl", hash = "sha256:ce2ac2675a6aa41ddb2a0c9cbff53780a617ac3d43e620f8fd77ba1c84dcfc06", size = 234562, upload-time = "2025-06-09T22:54:48.982Z" }, + { url = "https://files.pythonhosted.org/packages/a4/7c/3f539fcae630408d0bd8bf3208b9a647ccad10976eda62402a80adf8fc34/propcache-0.3.2-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:62b4239611205294cc433845b914131b2a1f03500ff3c1ed093ed216b82621e1", size = 222142, upload-time = "2025-06-09T22:54:50.424Z" }, + { url = "https://files.pythonhosted.org/packages/7c/d2/34b9eac8c35f79f8a962546b3e97e9d4b990c420ee66ac8255d5d9611648/propcache-0.3.2-cp312-cp312-win32.whl", hash = "sha256:df4a81b9b53449ebc90cc4deefb052c1dd934ba85012aa912c7ea7b7e38b60c1", size = 37711, upload-time = "2025-06-09T22:54:52.072Z" }, + { url = "https://files.pythonhosted.org/packages/19/61/d582be5d226cf79071681d1b46b848d6cb03d7b70af7063e33a2787eaa03/propcache-0.3.2-cp312-cp312-win_amd64.whl", hash = "sha256:7046e79b989d7fe457bb755844019e10f693752d169076138abf17f31380800c", size = 41479, upload-time = "2025-06-09T22:54:53.234Z" }, + { url = "https://files.pythonhosted.org/packages/cc/35/cc0aaecf278bb4575b8555f2b137de5ab821595ddae9da9d3cd1da4072c7/propcache-0.3.2-py3-none-any.whl", hash = "sha256:98f1ec44fb675f5052cccc8e609c46ed23a35a1cfd18545ad4e29002d858a43f", size = 12663, upload-time = "2025-06-09T22:56:04.484Z" }, +] + +[[package]] +name = "proto-plus" +version = "1.26.1" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "protobuf", marker = "sys_platform == 'linux'" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/f4/ac/87285f15f7cce6d4a008f33f1757fb5a13611ea8914eb58c3d0d26243468/proto_plus-1.26.1.tar.gz", hash = "sha256:21a515a4c4c0088a773899e23c7bbade3d18f9c66c73edd4c7ee3816bc96a012", size = 56142, upload-time = "2025-03-10T15:54:38.843Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/4e/6d/280c4c2ce28b1593a19ad5239c8b826871fc6ec275c21afc8e1820108039/proto_plus-1.26.1-py3-none-any.whl", hash = "sha256:13285478c2dcf2abb829db158e1047e2f1e8d63a077d94263c2b88b043c75a66", size = 50163, upload-time = "2025-03-10T15:54:37.335Z" }, +] + +[[package]] +name = "protobuf" +version = "4.25.8" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/df/01/34c8d2b6354906d728703cb9d546a0e534de479e25f1b581e4094c4a85cc/protobuf-4.25.8.tar.gz", hash = "sha256:6135cf8affe1fc6f76cced2641e4ea8d3e59518d1f24ae41ba97bcad82d397cd", size = 380920, upload-time = "2025-05-28T14:22:25.153Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/45/ff/05f34305fe6b85bbfbecbc559d423a5985605cad5eda4f47eae9e9c9c5c5/protobuf-4.25.8-cp310-abi3-win32.whl", hash = "sha256:504435d831565f7cfac9f0714440028907f1975e4bed228e58e72ecfff58a1e0", size = 392745, upload-time = "2025-05-28T14:22:10.524Z" }, + { url = "https://files.pythonhosted.org/packages/08/35/8b8a8405c564caf4ba835b1fdf554da869954712b26d8f2a98c0e434469b/protobuf-4.25.8-cp310-abi3-win_amd64.whl", hash = "sha256:bd551eb1fe1d7e92c1af1d75bdfa572eff1ab0e5bf1736716814cdccdb2360f9", size = 413736, upload-time = "2025-05-28T14:22:13.156Z" }, + { url = "https://files.pythonhosted.org/packages/28/d7/ab27049a035b258dab43445eb6ec84a26277b16105b277cbe0a7698bdc6c/protobuf-4.25.8-cp37-abi3-macosx_10_9_universal2.whl", hash = "sha256:ca809b42f4444f144f2115c4c1a747b9a404d590f18f37e9402422033e464e0f", size = 394537, upload-time = "2025-05-28T14:22:14.768Z" }, + { url = "https://files.pythonhosted.org/packages/bd/6d/a4a198b61808dd3d1ee187082ccc21499bc949d639feb948961b48be9a7e/protobuf-4.25.8-cp37-abi3-manylinux2014_aarch64.whl", hash = "sha256:9ad7ef62d92baf5a8654fbb88dac7fa5594cfa70fd3440488a5ca3bfc6d795a7", size = 294005, upload-time = "2025-05-28T14:22:16.052Z" }, + { url = "https://files.pythonhosted.org/packages/d6/c6/c9deaa6e789b6fc41b88ccbdfe7a42d2b82663248b715f55aa77fbc00724/protobuf-4.25.8-cp37-abi3-manylinux2014_x86_64.whl", hash = "sha256:83e6e54e93d2b696a92cad6e6efc924f3850f82b52e1563778dfab8b355101b0", size = 294924, upload-time = "2025-05-28T14:22:17.105Z" }, + { url = "https://files.pythonhosted.org/packages/0c/c1/6aece0ab5209981a70cd186f164c133fdba2f51e124ff92b73de7fd24d78/protobuf-4.25.8-py3-none-any.whl", hash = "sha256:15a0af558aa3b13efef102ae6e4f3efac06f1eea11afb3a57db2901447d9fb59", size = 156757, upload-time = "2025-05-28T14:22:24.135Z" }, +] + +[[package]] +name = "psutil" +version = "5.9.8" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/90/c7/6dc0a455d111f68ee43f27793971cf03fe29b6ef972042549db29eec39a2/psutil-5.9.8.tar.gz", hash = "sha256:6be126e3225486dff286a8fb9a06246a5253f4c7c53b475ea5f5ac934e64194c", size = 503247, upload-time = "2024-01-19T20:47:09.517Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/e7/e3/07ae864a636d70a8a6f58da27cb1179192f1140d5d1da10886ade9405797/psutil-5.9.8-cp36-abi3-macosx_10_9_x86_64.whl", hash = "sha256:aee678c8720623dc456fa20659af736241f575d79429a0e5e9cf88ae0605cc81", size = 248702, upload-time = "2024-01-19T20:47:36.303Z" }, + { url = "https://files.pythonhosted.org/packages/b3/bd/28c5f553667116b2598b9cc55908ec435cb7f77a34f2bff3e3ca765b0f78/psutil-5.9.8-cp36-abi3-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:8cb6403ce6d8e047495a701dc7c5bd788add903f8986d523e3e20b98b733e421", size = 285242, upload-time = "2024-01-19T20:47:39.65Z" }, + { url = "https://files.pythonhosted.org/packages/c5/4f/0e22aaa246f96d6ac87fe5ebb9c5a693fbe8877f537a1022527c47ca43c5/psutil-5.9.8-cp36-abi3-manylinux_2_12_x86_64.manylinux2010_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d06016f7f8625a1825ba3732081d77c94589dca78b7a3fc072194851e88461a4", size = 288191, upload-time = "2024-01-19T20:47:43.078Z" }, + { url = "https://files.pythonhosted.org/packages/6e/f5/2aa3a4acdc1e5940b59d421742356f133185667dd190b166dbcfcf5d7b43/psutil-5.9.8-cp37-abi3-win32.whl", hash = "sha256:bc56c2a1b0d15aa3eaa5a60c9f3f8e3e565303b465dbf57a1b730e7a2b9844e0", size = 251252, upload-time = "2024-01-19T20:47:52.88Z" }, + { url = "https://files.pythonhosted.org/packages/93/52/3e39d26feae7df0aa0fd510b14012c3678b36ed068f7d78b8d8784d61f0e/psutil-5.9.8-cp37-abi3-win_amd64.whl", hash = "sha256:8db4c1b57507eef143a15a6884ca10f7c73876cdf5d51e713151c1236a0e68cf", size = 255090, upload-time = "2024-01-19T20:47:56.019Z" }, + { url = "https://files.pythonhosted.org/packages/05/33/2d74d588408caedd065c2497bdb5ef83ce6082db01289a1e1147f6639802/psutil-5.9.8-cp38-abi3-macosx_11_0_arm64.whl", hash = "sha256:d16bbddf0693323b8c6123dd804100241da461e41d6e332fb0ba6058f630f8c8", size = 249898, upload-time = "2024-01-19T20:47:59.238Z" }, +] + +[[package]] +name = "psycopg" +version = "3.2.9" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "typing-extensions", marker = "sys_platform == 'linux'" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/27/4a/93a6ab570a8d1a4ad171a1f4256e205ce48d828781312c0bbaff36380ecb/psycopg-3.2.9.tar.gz", hash = "sha256:2fbb46fcd17bc81f993f28c47f1ebea38d66ae97cc2dbc3cad73b37cefbff700", size = 158122, upload-time = "2025-05-13T16:11:15.533Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/44/b0/a73c195a56eb6b92e937a5ca58521a5c3346fb233345adc80fd3e2f542e2/psycopg-3.2.9-py3-none-any.whl", hash = "sha256:01a8dadccdaac2123c916208c96e06631641c0566b22005493f09663c7a8d3b6", size = 202705, upload-time = "2025-05-13T16:06:26.584Z" }, +] + +[[package]] +name = "ptyprocess" +version = "0.7.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/20/e5/16ff212c1e452235a90aeb09066144d0c5a6a8c0834397e03f5224495c4e/ptyprocess-0.7.0.tar.gz", hash = "sha256:5c5d0a3b48ceee0b48485e0c26037c0acd7d29765ca3fbb5cb3831d347423220", size = 70762, upload-time = "2020-12-28T15:15:30.155Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/22/a6/858897256d0deac81a172289110f31629fc4cee19b6f01283303e18c8db3/ptyprocess-0.7.0-py2.py3-none-any.whl", hash = "sha256:4b41f3967fce3af57cc7e94b888626c18bf37a083e3651ca8feeb66d492fef35", size = 13993, upload-time = "2020-12-28T15:15:28.35Z" }, +] + +[[package]] +name = "pure-eval" +version = "0.2.3" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/cd/05/0a34433a064256a578f1783a10da6df098ceaa4a57bbeaa96a6c0352786b/pure_eval-0.2.3.tar.gz", hash = "sha256:5f4e983f40564c576c7c8635ae88db5956bb2229d7e9237d03b3c0b0190eaf42", size = 19752, upload-time = "2024-07-21T12:58:21.801Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/8e/37/efad0257dc6e593a18957422533ff0f87ede7c9c6ea010a2177d738fb82f/pure_eval-0.2.3-py3-none-any.whl", hash = "sha256:1db8e35b67b3d218d818ae653e27f06c3aa420901fa7b081ca98cbedc874e0d0", size = 11842, upload-time = "2024-07-21T12:58:20.04Z" }, +] + +[[package]] +name = "py-spy" +version = "0.4.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/7c/cd/9dacc04604dc4398ce5bed77ed59918ad0940f15165954d4aaa651cc640c/py_spy-0.4.0.tar.gz", hash = "sha256:806602ce7972782cc9c1e383f339bfc27bfb822d42485e6a3e0530ae5040e1f0", size = 253236, upload-time = "2024-11-01T19:08:51.487Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/6a/7e/02ca3ee68507db47afce769504060d71b4dc1455f0f9faa8d32fc7762221/py_spy-0.4.0-py2.py3-none-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl", hash = "sha256:f2cf3f7130e7d780471faa5957441d3b4e0ec39a79b2c00f4c33d494f7728428", size = 3617847, upload-time = "2024-11-01T19:08:37.44Z" }, + { url = "https://files.pythonhosted.org/packages/65/7c/d9e26cc4c8e91f96a3a65de04d2e2e4131fbcaf6830d10917d4fab9d6788/py_spy-0.4.0-py2.py3-none-macosx_11_0_arm64.whl", hash = "sha256:47cdda4c34d9b6cb01f3aaeceb2e88faf57da880207fe72ff6ff97e9bb6cc8a9", size = 1761955, upload-time = "2024-11-01T19:08:39.632Z" }, + { url = "https://files.pythonhosted.org/packages/d2/e4/8fbfd219b7f282b80e6b2e74c9197850d2c51db8555705567bb65507b060/py_spy-0.4.0-py2.py3-none-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:eee3d0bde85ca5cf4f01f012d461180ca76c24835a96f7b5c4ded64eb6a008ab", size = 2059471, upload-time = "2024-11-01T19:08:41.818Z" }, + { url = "https://files.pythonhosted.org/packages/a7/1d/79a94a5ace810c13b730ce96765ca465c171b4952034f1be7402d8accbc1/py_spy-0.4.0-py2.py3-none-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:c5f06ffce4c9c98b7fc9f5e67e5e7db591173f1351837633f3f23d9378b1d18a", size = 2067486, upload-time = "2024-11-01T19:08:43.673Z" }, + { url = "https://files.pythonhosted.org/packages/6d/90/fbbb038f826a83ed15ebc4ae606815d6cad6c5c6399c86c7ab96f6c60817/py_spy-0.4.0-py2.py3-none-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:87573e64dbfdfc89ba2e0f5e2f525aa84e0299c7eb6454b47ea335fde583a7a0", size = 2141433, upload-time = "2024-11-01T19:08:45.988Z" }, + { url = "https://files.pythonhosted.org/packages/c9/c1/5e012669ebb687e546dc99fcfc4861ebfcf3a337b7a41af945df23140bb5/py_spy-0.4.0-py2.py3-none-manylinux_2_5_x86_64.manylinux1_x86_64.whl", hash = "sha256:8bf2f3702cef367a489faa45177b41a6c31b2a3e5bd78c978d44e29340152f5a", size = 2732951, upload-time = "2024-11-01T19:08:48.109Z" }, + { url = "https://files.pythonhosted.org/packages/74/8b/dd8490660019a6b0be28d9ffd2bf1db967604b19f3f2719c0e283a16ac7f/py_spy-0.4.0-py2.py3-none-win_amd64.whl", hash = "sha256:77d8f637ade38367d944874776f45b703b7ac5938b1f7be8891f3a5876ddbb96", size = 1810770, upload-time = "2024-11-01T19:08:50.229Z" }, +] + +[[package]] +name = "pyarrow" +version = "17.0.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "numpy", version = "1.24.4", source = { registry = "https://pypi.org/simple" }, marker = "(sys_platform == 'linux' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (sys_platform == 'linux' and extra == 'group-9-notebooks-trustyai') or (sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-trustyai')" }, + { name = "numpy", version = "1.26.4", source = { registry = "https://pypi.org/simple" }, marker = "(sys_platform == 'linux' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (sys_platform == 'linux' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-tensorflow') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai')" }, + { name = "numpy", version = "2.2.6", source = { registry = "https://pypi.org/simple" }, marker = "(sys_platform == 'linux' and extra == 'group-9-notebooks-jupyter-datascience-image') or (sys_platform == 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (sys_platform == 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred') or (sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred') or (sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchcuda') or (sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchrocm') or (sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai')" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/27/4e/ea6d43f324169f8aec0e57569443a38bab4b398d09769ca64f7b4d467de3/pyarrow-17.0.0.tar.gz", hash = "sha256:4beca9521ed2c0921c1023e68d097d0299b62c362639ea315572a58f3f50fd28", size = 1112479, upload-time = "2024-07-17T10:41:25.092Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/f9/46/ce89f87c2936f5bb9d879473b9663ce7a4b1f4359acc2f0eb39865eaa1af/pyarrow-17.0.0-cp311-cp311-macosx_10_15_x86_64.whl", hash = "sha256:1c8856e2ef09eb87ecf937104aacfa0708f22dfeb039c363ec99735190ffb977", size = 29028748, upload-time = "2024-07-16T10:30:02.609Z" }, + { url = "https://files.pythonhosted.org/packages/8d/8e/ce2e9b2146de422f6638333c01903140e9ada244a2a477918a368306c64c/pyarrow-17.0.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:2e19f569567efcbbd42084e87f948778eb371d308e137a0f97afe19bb860ccb3", size = 27190965, upload-time = "2024-07-16T10:30:10.718Z" }, + { url = "https://files.pythonhosted.org/packages/3b/c8/5675719570eb1acd809481c6d64e2136ffb340bc387f4ca62dce79516cea/pyarrow-17.0.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:6b244dc8e08a23b3e352899a006a26ae7b4d0da7bb636872fa8f5884e70acf15", size = 39269081, upload-time = "2024-07-16T10:30:18.878Z" }, + { url = "https://files.pythonhosted.org/packages/5e/78/3931194f16ab681ebb87ad252e7b8d2c8b23dad49706cadc865dff4a1dd3/pyarrow-17.0.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:0b72e87fe3e1db343995562f7fff8aee354b55ee83d13afba65400c178ab2597", size = 39864921, upload-time = "2024-07-16T10:30:27.008Z" }, + { url = "https://files.pythonhosted.org/packages/d8/81/69b6606093363f55a2a574c018901c40952d4e902e670656d18213c71ad7/pyarrow-17.0.0-cp311-cp311-manylinux_2_28_aarch64.whl", hash = "sha256:dc5c31c37409dfbc5d014047817cb4ccd8c1ea25d19576acf1a001fe07f5b420", size = 38740798, upload-time = "2024-07-16T10:30:34.814Z" }, + { url = "https://files.pythonhosted.org/packages/4c/21/9ca93b84b92ef927814cb7ba37f0774a484c849d58f0b692b16af8eebcfb/pyarrow-17.0.0-cp311-cp311-manylinux_2_28_x86_64.whl", hash = "sha256:e3343cb1e88bc2ea605986d4b94948716edc7a8d14afd4e2c097232f729758b4", size = 39871877, upload-time = "2024-07-16T10:30:42.672Z" }, + { url = "https://files.pythonhosted.org/packages/30/d1/63a7c248432c71c7d3ee803e706590a0b81ce1a8d2b2ae49677774b813bb/pyarrow-17.0.0-cp311-cp311-win_amd64.whl", hash = "sha256:a27532c38f3de9eb3e90ecab63dfda948a8ca859a66e3a47f5f42d1e403c4d03", size = 25151089, upload-time = "2024-07-16T10:30:49.279Z" }, + { url = "https://files.pythonhosted.org/packages/d4/62/ce6ac1275a432b4a27c55fe96c58147f111d8ba1ad800a112d31859fae2f/pyarrow-17.0.0-cp312-cp312-macosx_10_15_x86_64.whl", hash = "sha256:9b8a823cea605221e61f34859dcc03207e52e409ccf6354634143e23af7c8d22", size = 29019418, upload-time = "2024-07-16T10:30:55.573Z" }, + { url = "https://files.pythonhosted.org/packages/8e/0a/dbd0c134e7a0c30bea439675cc120012337202e5fac7163ba839aa3691d2/pyarrow-17.0.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:f1e70de6cb5790a50b01d2b686d54aaf73da01266850b05e3af2a1bc89e16053", size = 27152197, upload-time = "2024-07-16T10:31:02.036Z" }, + { url = "https://files.pythonhosted.org/packages/cb/05/3f4a16498349db79090767620d6dc23c1ec0c658a668d61d76b87706c65d/pyarrow-17.0.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0071ce35788c6f9077ff9ecba4858108eebe2ea5a3f7cf2cf55ebc1dbc6ee24a", size = 39263026, upload-time = "2024-07-16T10:31:10.351Z" }, + { url = "https://files.pythonhosted.org/packages/c2/0c/ea2107236740be8fa0e0d4a293a095c9f43546a2465bb7df34eee9126b09/pyarrow-17.0.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:757074882f844411fcca735e39aae74248a1531367a7c80799b4266390ae51cc", size = 39880798, upload-time = "2024-07-16T10:31:17.66Z" }, + { url = "https://files.pythonhosted.org/packages/f6/b0/b9164a8bc495083c10c281cc65064553ec87b7537d6f742a89d5953a2a3e/pyarrow-17.0.0-cp312-cp312-manylinux_2_28_aarch64.whl", hash = "sha256:9ba11c4f16976e89146781a83833df7f82077cdab7dc6232c897789343f7891a", size = 38715172, upload-time = "2024-07-16T10:31:25.965Z" }, + { url = "https://files.pythonhosted.org/packages/f1/c4/9625418a1413005e486c006e56675334929fad864347c5ae7c1b2e7fe639/pyarrow-17.0.0-cp312-cp312-manylinux_2_28_x86_64.whl", hash = "sha256:b0c6ac301093b42d34410b187bba560b17c0330f64907bfa4f7f7f2444b0cf9b", size = 39874508, upload-time = "2024-07-16T10:31:33.721Z" }, + { url = "https://files.pythonhosted.org/packages/ae/49/baafe2a964f663413be3bd1cf5c45ed98c5e42e804e2328e18f4570027c1/pyarrow-17.0.0-cp312-cp312-win_amd64.whl", hash = "sha256:392bc9feabc647338e6c89267635e111d71edad5fcffba204425a7c8d13610d7", size = 25099235, upload-time = "2024-07-16T10:31:40.893Z" }, +] + +[[package]] +name = "pyasn1" +version = "0.6.1" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/ba/e9/01f1a64245b89f039897cb0130016d79f77d52669aae6ee7b159a6c4c018/pyasn1-0.6.1.tar.gz", hash = "sha256:6f580d2bdd84365380830acf45550f2511469f673cb4a5ae3857a3170128b034", size = 145322, upload-time = "2024-09-10T22:41:42.55Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/c8/f1/d6a797abb14f6283c0ddff96bbdd46937f64122b8c925cab503dd37f8214/pyasn1-0.6.1-py3-none-any.whl", hash = "sha256:0d632f46f2ba09143da3a8afe9e33fb6f92fa2320ab7e886e2d0f7672af84629", size = 83135, upload-time = "2024-09-11T16:00:36.122Z" }, +] + +[[package]] +name = "pyasn1-modules" +version = "0.4.1" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "pyasn1", marker = "sys_platform == 'linux'" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/1d/67/6afbf0d507f73c32d21084a79946bfcfca5fbc62a72057e9c23797a737c9/pyasn1_modules-0.4.1.tar.gz", hash = "sha256:c28e2dbf9c06ad61c71a075c7e0f9fd0f1b0bb2d2ad4377f240d33ac2ab60a7c", size = 310028, upload-time = "2024-09-10T22:42:08.349Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/77/89/bc88a6711935ba795a679ea6ebee07e128050d6382eaa35a0a47c8032bdc/pyasn1_modules-0.4.1-py3-none-any.whl", hash = "sha256:49bfa96b45a292b711e986f222502c1c9a5e1f4e568fc30e2574a6c7d07838fd", size = 181537, upload-time = "2024-09-11T16:02:10.336Z" }, +] + +[[package]] +name = "pycodestyle" +version = "2.12.1" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/43/aa/210b2c9aedd8c1cbeea31a50e42050ad56187754b34eb214c46709445801/pycodestyle-2.12.1.tar.gz", hash = "sha256:6838eae08bbce4f6accd5d5572075c63626a15ee3e6f842df996bf62f6d73521", size = 39232, upload-time = "2024-08-04T20:26:54.576Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/3a/d8/a211b3f85e99a0daa2ddec96c949cac6824bd305b040571b82a03dd62636/pycodestyle-2.12.1-py2.py3-none-any.whl", hash = "sha256:46f0fb92069a7c28ab7bb558f05bfc0110dac69a0cd23c61ea0040283a9d78b3", size = 31284, upload-time = "2024-08-04T20:26:53.173Z" }, +] + +[[package]] +name = "pycparser" +version = "2.22" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/1d/b2/31537cf4b1ca988837256c910a668b553fceb8f069bedc4b1c826024b52c/pycparser-2.22.tar.gz", hash = "sha256:491c8be9c040f5390f5bf44a5b07752bd07f56edf992381b05c701439eec10f6", size = 172736, upload-time = "2024-03-30T13:22:22.564Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/13/a3/a812df4e2dd5696d1f351d58b8fe16a405b234ad2886a0dab9183fb78109/pycparser-2.22-py3-none-any.whl", hash = "sha256:c3702b6d3dd8c7abc1afa565d7e63d53a1d0bd86cdc24edd75470f4de499cfcc", size = 117552, upload-time = "2024-03-30T13:22:20.476Z" }, +] + +[[package]] +name = "pycryptodome" +version = "3.23.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/8e/a6/8452177684d5e906854776276ddd34eca30d1b1e15aa1ee9cefc289a33f5/pycryptodome-3.23.0.tar.gz", hash = "sha256:447700a657182d60338bab09fdb27518f8856aecd80ae4c6bdddb67ff5da44ef", size = 4921276, upload-time = "2025-05-17T17:21:45.242Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/db/6c/a1f71542c969912bb0e106f64f60a56cc1f0fabecf9396f45accbe63fa68/pycryptodome-3.23.0-cp37-abi3-macosx_10_9_universal2.whl", hash = "sha256:187058ab80b3281b1de11c2e6842a357a1f71b42cb1e15bce373f3d238135c27", size = 2495627, upload-time = "2025-05-17T17:20:47.139Z" }, + { url = "https://files.pythonhosted.org/packages/6e/4e/a066527e079fc5002390c8acdd3aca431e6ea0a50ffd7201551175b47323/pycryptodome-3.23.0-cp37-abi3-macosx_10_9_x86_64.whl", hash = "sha256:cfb5cd445280c5b0a4e6187a7ce8de5a07b5f3f897f235caa11f1f435f182843", size = 1640362, upload-time = "2025-05-17T17:20:50.392Z" }, + { url = "https://files.pythonhosted.org/packages/50/52/adaf4c8c100a8c49d2bd058e5b551f73dfd8cb89eb4911e25a0c469b6b4e/pycryptodome-3.23.0-cp37-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:67bd81fcbe34f43ad9422ee8fd4843c8e7198dd88dd3d40e6de42ee65fbe1490", size = 2182625, upload-time = "2025-05-17T17:20:52.866Z" }, + { url = "https://files.pythonhosted.org/packages/5f/e9/a09476d436d0ff1402ac3867d933c61805ec2326c6ea557aeeac3825604e/pycryptodome-3.23.0-cp37-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c8987bd3307a39bc03df5c8e0e3d8be0c4c3518b7f044b0f4c15d1aa78f52575", size = 2268954, upload-time = "2025-05-17T17:20:55.027Z" }, + { url = "https://files.pythonhosted.org/packages/f9/c5/ffe6474e0c551d54cab931918127c46d70cab8f114e0c2b5a3c071c2f484/pycryptodome-3.23.0-cp37-abi3-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:aa0698f65e5b570426fc31b8162ed4603b0c2841cbb9088e2b01641e3065915b", size = 2308534, upload-time = "2025-05-17T17:20:57.279Z" }, + { url = "https://files.pythonhosted.org/packages/18/28/e199677fc15ecf43010f2463fde4c1a53015d1fe95fb03bca2890836603a/pycryptodome-3.23.0-cp37-abi3-musllinux_1_2_aarch64.whl", hash = "sha256:53ecbafc2b55353edcebd64bf5da94a2a2cdf5090a6915bcca6eca6cc452585a", size = 2181853, upload-time = "2025-05-17T17:20:59.322Z" }, + { url = "https://files.pythonhosted.org/packages/ce/ea/4fdb09f2165ce1365c9eaefef36625583371ee514db58dc9b65d3a255c4c/pycryptodome-3.23.0-cp37-abi3-musllinux_1_2_i686.whl", hash = "sha256:156df9667ad9f2ad26255926524e1c136d6664b741547deb0a86a9acf5ea631f", size = 2342465, upload-time = "2025-05-17T17:21:03.83Z" }, + { url = "https://files.pythonhosted.org/packages/22/82/6edc3fc42fe9284aead511394bac167693fb2b0e0395b28b8bedaa07ef04/pycryptodome-3.23.0-cp37-abi3-musllinux_1_2_x86_64.whl", hash = "sha256:dea827b4d55ee390dc89b2afe5927d4308a8b538ae91d9c6f7a5090f397af1aa", size = 2267414, upload-time = "2025-05-17T17:21:06.72Z" }, + { url = "https://files.pythonhosted.org/packages/59/fe/aae679b64363eb78326c7fdc9d06ec3de18bac68be4b612fc1fe8902693c/pycryptodome-3.23.0-cp37-abi3-win32.whl", hash = "sha256:507dbead45474b62b2bbe318eb1c4c8ee641077532067fec9c1aa82c31f84886", size = 1768484, upload-time = "2025-05-17T17:21:08.535Z" }, + { url = "https://files.pythonhosted.org/packages/54/2f/e97a1b8294db0daaa87012c24a7bb714147c7ade7656973fd6c736b484ff/pycryptodome-3.23.0-cp37-abi3-win_amd64.whl", hash = "sha256:c75b52aacc6c0c260f204cbdd834f76edc9fb0d8e0da9fbf8352ef58202564e2", size = 1799636, upload-time = "2025-05-17T17:21:10.393Z" }, + { url = "https://files.pythonhosted.org/packages/18/3d/f9441a0d798bf2b1e645adc3265e55706aead1255ccdad3856dbdcffec14/pycryptodome-3.23.0-cp37-abi3-win_arm64.whl", hash = "sha256:11eeeb6917903876f134b56ba11abe95c0b0fd5e3330def218083c7d98bbcb3c", size = 1703675, upload-time = "2025-05-17T17:21:13.146Z" }, +] + +[[package]] +name = "pydantic" +version = "1.10.22" +source = { registry = "https://pypi.org/simple" } +resolution-markers = [ + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", +] +dependencies = [ + { name = "typing-extensions", marker = "(sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base') or (sys_platform == 'linux' and extra == 'group-9-notebooks-jupyter-datascience-image') or (sys_platform == 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (sys_platform == 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (sys_platform == 'linux' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (sys_platform == 'linux' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (sys_platform == 'linux' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai')" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/9a/57/5996c63f0deec09e9e901a2b838247c97c6844999562eac4e435bcb83938/pydantic-1.10.22.tar.gz", hash = "sha256:ee1006cebd43a8e7158fb7190bb8f4e2da9649719bff65d0c287282ec38dec6d", size = 356771, upload-time = "2025-04-24T13:38:43.605Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/42/03/e435ed85a9abda29e3fbdb49c572fe4131a68c6daf3855a01eebda9e1b27/pydantic-1.10.22-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:8e530a8da353f791ad89e701c35787418605d35085f4bdda51b416946070e938", size = 2845682, upload-time = "2025-04-24T13:37:10.142Z" }, + { url = "https://files.pythonhosted.org/packages/72/ea/4a625035672f6c06d3f1c7e33aa0af6bf1929991e27017e98b9c2064ae0b/pydantic-1.10.22-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:654322b85642e9439d7de4c83cb4084ddd513df7ff8706005dada43b34544946", size = 2553286, upload-time = "2025-04-24T13:37:11.946Z" }, + { url = "https://files.pythonhosted.org/packages/a4/f0/424ad837746e69e9f061ba9be68c2a97aef7376d1911692904d8efbcd322/pydantic-1.10.22-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a8bece75bd1b9fc1c32b57a32831517943b1159ba18b4ba32c0d431d76a120ae", size = 3141232, upload-time = "2025-04-24T13:37:14.394Z" }, + { url = "https://files.pythonhosted.org/packages/14/67/4979c19e8cfd092085a292485e0b42d74e4eeefbb8cd726aa8ba38d06294/pydantic-1.10.22-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:eccb58767f13c6963dcf96d02cb8723ebb98b16692030803ac075d2439c07b0f", size = 3214272, upload-time = "2025-04-24T13:37:16.201Z" }, + { url = "https://files.pythonhosted.org/packages/1a/04/32339ce43e97519d19e7759902515c750edbf4832a13063a4ab157f83f42/pydantic-1.10.22-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:7778e6200ff8ed5f7052c1516617423d22517ad36cc7a3aedd51428168e3e5e8", size = 3321646, upload-time = "2025-04-24T13:37:19.086Z" }, + { url = "https://files.pythonhosted.org/packages/92/35/dffc1b29cb7198aadab68d75447191e59bdbc1f1d2d51826c9a4460d372f/pydantic-1.10.22-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:bffe02767d27c39af9ca7dc7cd479c00dda6346bb62ffc89e306f665108317a2", size = 3244258, upload-time = "2025-04-24T13:37:20.929Z" }, + { url = "https://files.pythonhosted.org/packages/11/c5/c4ce6ebe7f528a879441eabd2c6dd9e2e4c54f320a8c9344ba93b3aa8701/pydantic-1.10.22-cp311-cp311-win_amd64.whl", hash = "sha256:23bc19c55427091b8e589bc08f635ab90005f2dc99518f1233386f46462c550a", size = 2309702, upload-time = "2025-04-24T13:37:23.296Z" }, + { url = "https://files.pythonhosted.org/packages/f6/a3/ec66239ed7c9e90edfb85b23b6b18eb290ed7aa05f54837cdcb6a14faa98/pydantic-1.10.22-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:92d0f97828a075a71d9efc65cf75db5f149b4d79a38c89648a63d2932894d8c9", size = 2794865, upload-time = "2025-04-24T13:37:25.087Z" }, + { url = "https://files.pythonhosted.org/packages/49/6a/99cf3fee612d93210c85f45a161e98c1c5b45b6dcadb21c9f1f838fa9e28/pydantic-1.10.22-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:6af5a2811b6b95b58b829aeac5996d465a5f0c7ed84bd871d603cf8646edf6ff", size = 2534212, upload-time = "2025-04-24T13:37:26.848Z" }, + { url = "https://files.pythonhosted.org/packages/f1/e6/0f8882775cd9a60b221103ee7d6a89e10eb5a892d877c398df0da7140704/pydantic-1.10.22-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6cf06d8d40993e79af0ab2102ef5da77b9ddba51248e4cb27f9f3f591fbb096e", size = 2994027, upload-time = "2025-04-24T13:37:28.683Z" }, + { url = "https://files.pythonhosted.org/packages/e7/a3/f20fdecbaa2a2721a6a8ee9e4f344d1f72bd7d56e679371c3f2be15eb8c8/pydantic-1.10.22-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:184b7865b171a6057ad97f4a17fbac81cec29bd103e996e7add3d16b0d95f609", size = 3036716, upload-time = "2025-04-24T13:37:30.547Z" }, + { url = "https://files.pythonhosted.org/packages/1f/83/dab34436d830c38706685acc77219fc2a209fea2a2301a1b05a2865b28bf/pydantic-1.10.22-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:923ad861677ab09d89be35d36111156063a7ebb44322cdb7b49266e1adaba4bb", size = 3171801, upload-time = "2025-04-24T13:37:32.474Z" }, + { url = "https://files.pythonhosted.org/packages/1e/6e/b64deccb8a7304d584088972437ea3091e9d99d27a8e7bf2bd08e29ae84e/pydantic-1.10.22-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:82d9a3da1686443fb854c8d2ab9a473251f8f4cdd11b125522efb4d7c646e7bc", size = 3123560, upload-time = "2025-04-24T13:37:34.855Z" }, + { url = "https://files.pythonhosted.org/packages/08/9a/90d1ab704329a7ae8666354be84b5327d655764003974364767c9d307d3a/pydantic-1.10.22-cp312-cp312-win_amd64.whl", hash = "sha256:1612604929af4c602694a7f3338b18039d402eb5ddfbf0db44f1ebfaf07f93e7", size = 2191378, upload-time = "2025-04-24T13:37:36.649Z" }, + { url = "https://files.pythonhosted.org/packages/e9/e0/1ed151a56869be1588ad2d8cda9f8c1d95b16f74f09a7cea879ca9b63a8b/pydantic-1.10.22-py3-none-any.whl", hash = "sha256:343037d608bcbd34df937ac259708bfc83664dadf88afe8516c4f282d7d471a9", size = 166503, upload-time = "2025-04-24T13:38:41.374Z" }, +] + +[[package]] +name = "pydantic" +version = "2.10.6" +source = { registry = "https://pypi.org/simple" } +resolution-markers = [ + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", +] +dependencies = [ + { name = "annotated-types", marker = "(sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-trustyai') or (sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-elyra-trustyai') or (sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-elyra-trustyai') or (sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-trustyai-image') or (sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image') or (sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-trustyai')" }, + { name = "pydantic-core", marker = "(sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-trustyai') or (sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-elyra-trustyai') or (sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-elyra-trustyai') or (sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-trustyai-image') or (sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image') or (sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-trustyai')" }, + { name = "typing-extensions", marker = "(sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-trustyai') or (sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-elyra-trustyai') or (sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-elyra-trustyai') or (sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-trustyai-image') or (sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image') or (sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-trustyai')" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/b7/ae/d5220c5c52b158b1de7ca89fc5edb72f304a70a4c540c84c8844bf4008de/pydantic-2.10.6.tar.gz", hash = "sha256:ca5daa827cce33de7a42be142548b0096bf05a7e7b365aebfa5f8eeec7128236", size = 761681, upload-time = "2025-01-24T01:42:12.693Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/f4/3c/8cc1cc84deffa6e25d2d0c688ebb80635dfdbf1dbea3e30c541c8cf4d860/pydantic-2.10.6-py3-none-any.whl", hash = "sha256:427d664bf0b8a2b34ff5dd0f5a18df00591adcee7198fbd71981054cef37b584", size = 431696, upload-time = "2025-01-24T01:42:10.371Z" }, +] + +[[package]] +name = "pydantic-core" +version = "2.27.2" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "typing-extensions", marker = "(sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-trustyai') or (sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-elyra-trustyai') or (sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-elyra-trustyai') or (sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-trustyai-image') or (sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image') or (sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-trustyai')" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/fc/01/f3e5ac5e7c25833db5eb555f7b7ab24cd6f8c322d3a3ad2d67a952dc0abc/pydantic_core-2.27.2.tar.gz", hash = "sha256:eb026e5a4c1fee05726072337ff51d1efb6f59090b7da90d30ea58625b1ffb39", size = 413443, upload-time = "2024-12-18T11:31:54.917Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/c2/89/f3450af9d09d44eea1f2c369f49e8f181d742f28220f88cc4dfaae91ea6e/pydantic_core-2.27.2-cp311-cp311-macosx_10_12_x86_64.whl", hash = "sha256:8e10c99ef58cfdf2a66fc15d66b16c4a04f62bca39db589ae8cba08bc55331bc", size = 1893421, upload-time = "2024-12-18T11:27:55.409Z" }, + { url = "https://files.pythonhosted.org/packages/9e/e3/71fe85af2021f3f386da42d291412e5baf6ce7716bd7101ea49c810eda90/pydantic_core-2.27.2-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:26f32e0adf166a84d0cb63be85c562ca8a6fa8de28e5f0d92250c6b7e9e2aff7", size = 1814998, upload-time = "2024-12-18T11:27:57.252Z" }, + { url = "https://files.pythonhosted.org/packages/a6/3c/724039e0d848fd69dbf5806894e26479577316c6f0f112bacaf67aa889ac/pydantic_core-2.27.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8c19d1ea0673cd13cc2f872f6c9ab42acc4e4f492a7ca9d3795ce2b112dd7e15", size = 1826167, upload-time = "2024-12-18T11:27:59.146Z" }, + { url = "https://files.pythonhosted.org/packages/2b/5b/1b29e8c1fb5f3199a9a57c1452004ff39f494bbe9bdbe9a81e18172e40d3/pydantic_core-2.27.2-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:5e68c4446fe0810e959cdff46ab0a41ce2f2c86d227d96dc3847af0ba7def306", size = 1865071, upload-time = "2024-12-18T11:28:02.625Z" }, + { url = "https://files.pythonhosted.org/packages/89/6c/3985203863d76bb7d7266e36970d7e3b6385148c18a68cc8915fd8c84d57/pydantic_core-2.27.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:d9640b0059ff4f14d1f37321b94061c6db164fbe49b334b31643e0528d100d99", size = 2036244, upload-time = "2024-12-18T11:28:04.442Z" }, + { url = "https://files.pythonhosted.org/packages/0e/41/f15316858a246b5d723f7d7f599f79e37493b2e84bfc789e58d88c209f8a/pydantic_core-2.27.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:40d02e7d45c9f8af700f3452f329ead92da4c5f4317ca9b896de7ce7199ea459", size = 2737470, upload-time = "2024-12-18T11:28:07.679Z" }, + { url = "https://files.pythonhosted.org/packages/a8/7c/b860618c25678bbd6d1d99dbdfdf0510ccb50790099b963ff78a124b754f/pydantic_core-2.27.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:1c1fd185014191700554795c99b347d64f2bb637966c4cfc16998a0ca700d048", size = 1992291, upload-time = "2024-12-18T11:28:10.297Z" }, + { url = "https://files.pythonhosted.org/packages/bf/73/42c3742a391eccbeab39f15213ecda3104ae8682ba3c0c28069fbcb8c10d/pydantic_core-2.27.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:d81d2068e1c1228a565af076598f9e7451712700b673de8f502f0334f281387d", size = 1994613, upload-time = "2024-12-18T11:28:13.362Z" }, + { url = "https://files.pythonhosted.org/packages/94/7a/941e89096d1175d56f59340f3a8ebaf20762fef222c298ea96d36a6328c5/pydantic_core-2.27.2-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:1a4207639fb02ec2dbb76227d7c751a20b1a6b4bc52850568e52260cae64ca3b", size = 2002355, upload-time = "2024-12-18T11:28:16.587Z" }, + { url = "https://files.pythonhosted.org/packages/6e/95/2359937a73d49e336a5a19848713555605d4d8d6940c3ec6c6c0ca4dcf25/pydantic_core-2.27.2-cp311-cp311-musllinux_1_1_armv7l.whl", hash = "sha256:3de3ce3c9ddc8bbd88f6e0e304dea0e66d843ec9de1b0042b0911c1663ffd474", size = 2126661, upload-time = "2024-12-18T11:28:18.407Z" }, + { url = "https://files.pythonhosted.org/packages/2b/4c/ca02b7bdb6012a1adef21a50625b14f43ed4d11f1fc237f9d7490aa5078c/pydantic_core-2.27.2-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:30c5f68ded0c36466acede341551106821043e9afaad516adfb6e8fa80a4e6a6", size = 2153261, upload-time = "2024-12-18T11:28:21.471Z" }, + { url = "https://files.pythonhosted.org/packages/72/9d/a241db83f973049a1092a079272ffe2e3e82e98561ef6214ab53fe53b1c7/pydantic_core-2.27.2-cp311-cp311-win32.whl", hash = "sha256:c70c26d2c99f78b125a3459f8afe1aed4d9687c24fd677c6a4436bc042e50d6c", size = 1812361, upload-time = "2024-12-18T11:28:23.53Z" }, + { url = "https://files.pythonhosted.org/packages/e8/ef/013f07248041b74abd48a385e2110aa3a9bbfef0fbd97d4e6d07d2f5b89a/pydantic_core-2.27.2-cp311-cp311-win_amd64.whl", hash = "sha256:08e125dbdc505fa69ca7d9c499639ab6407cfa909214d500897d02afb816e7cc", size = 1982484, upload-time = "2024-12-18T11:28:25.391Z" }, + { url = "https://files.pythonhosted.org/packages/10/1c/16b3a3e3398fd29dca77cea0a1d998d6bde3902fa2706985191e2313cc76/pydantic_core-2.27.2-cp311-cp311-win_arm64.whl", hash = "sha256:26f0d68d4b235a2bae0c3fc585c585b4ecc51382db0e3ba402a22cbc440915e4", size = 1867102, upload-time = "2024-12-18T11:28:28.593Z" }, + { url = "https://files.pythonhosted.org/packages/d6/74/51c8a5482ca447871c93e142d9d4a92ead74de6c8dc5e66733e22c9bba89/pydantic_core-2.27.2-cp312-cp312-macosx_10_12_x86_64.whl", hash = "sha256:9e0c8cfefa0ef83b4da9588448b6d8d2a2bf1a53c3f1ae5fca39eb3061e2f0b0", size = 1893127, upload-time = "2024-12-18T11:28:30.346Z" }, + { url = "https://files.pythonhosted.org/packages/d3/f3/c97e80721735868313c58b89d2de85fa80fe8dfeeed84dc51598b92a135e/pydantic_core-2.27.2-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:83097677b8e3bd7eaa6775720ec8e0405f1575015a463285a92bfdfe254529ef", size = 1811340, upload-time = "2024-12-18T11:28:32.521Z" }, + { url = "https://files.pythonhosted.org/packages/9e/91/840ec1375e686dbae1bd80a9e46c26a1e0083e1186abc610efa3d9a36180/pydantic_core-2.27.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:172fce187655fece0c90d90a678424b013f8fbb0ca8b036ac266749c09438cb7", size = 1822900, upload-time = "2024-12-18T11:28:34.507Z" }, + { url = "https://files.pythonhosted.org/packages/f6/31/4240bc96025035500c18adc149aa6ffdf1a0062a4b525c932065ceb4d868/pydantic_core-2.27.2-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:519f29f5213271eeeeb3093f662ba2fd512b91c5f188f3bb7b27bc5973816934", size = 1869177, upload-time = "2024-12-18T11:28:36.488Z" }, + { url = "https://files.pythonhosted.org/packages/fa/20/02fbaadb7808be578317015c462655c317a77a7c8f0ef274bc016a784c54/pydantic_core-2.27.2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:05e3a55d124407fffba0dd6b0c0cd056d10e983ceb4e5dbd10dda135c31071d6", size = 2038046, upload-time = "2024-12-18T11:28:39.409Z" }, + { url = "https://files.pythonhosted.org/packages/06/86/7f306b904e6c9eccf0668248b3f272090e49c275bc488a7b88b0823444a4/pydantic_core-2.27.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:9c3ed807c7b91de05e63930188f19e921d1fe90de6b4f5cd43ee7fcc3525cb8c", size = 2685386, upload-time = "2024-12-18T11:28:41.221Z" }, + { url = "https://files.pythonhosted.org/packages/8d/f0/49129b27c43396581a635d8710dae54a791b17dfc50c70164866bbf865e3/pydantic_core-2.27.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6fb4aadc0b9a0c063206846d603b92030eb6f03069151a625667f982887153e2", size = 1997060, upload-time = "2024-12-18T11:28:44.709Z" }, + { url = "https://files.pythonhosted.org/packages/0d/0f/943b4af7cd416c477fd40b187036c4f89b416a33d3cc0ab7b82708a667aa/pydantic_core-2.27.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:28ccb213807e037460326424ceb8b5245acb88f32f3d2777427476e1b32c48c4", size = 2004870, upload-time = "2024-12-18T11:28:46.839Z" }, + { url = "https://files.pythonhosted.org/packages/35/40/aea70b5b1a63911c53a4c8117c0a828d6790483f858041f47bab0b779f44/pydantic_core-2.27.2-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:de3cd1899e2c279b140adde9357c4495ed9d47131b4a4eaff9052f23398076b3", size = 1999822, upload-time = "2024-12-18T11:28:48.896Z" }, + { url = "https://files.pythonhosted.org/packages/f2/b3/807b94fd337d58effc5498fd1a7a4d9d59af4133e83e32ae39a96fddec9d/pydantic_core-2.27.2-cp312-cp312-musllinux_1_1_armv7l.whl", hash = "sha256:220f892729375e2d736b97d0e51466252ad84c51857d4d15f5e9692f9ef12be4", size = 2130364, upload-time = "2024-12-18T11:28:50.755Z" }, + { url = "https://files.pythonhosted.org/packages/fc/df/791c827cd4ee6efd59248dca9369fb35e80a9484462c33c6649a8d02b565/pydantic_core-2.27.2-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:a0fcd29cd6b4e74fe8ddd2c90330fd8edf2e30cb52acda47f06dd615ae72da57", size = 2158303, upload-time = "2024-12-18T11:28:54.122Z" }, + { url = "https://files.pythonhosted.org/packages/9b/67/4e197c300976af185b7cef4c02203e175fb127e414125916bf1128b639a9/pydantic_core-2.27.2-cp312-cp312-win32.whl", hash = "sha256:1e2cb691ed9834cd6a8be61228471d0a503731abfb42f82458ff27be7b2186fc", size = 1834064, upload-time = "2024-12-18T11:28:56.074Z" }, + { url = "https://files.pythonhosted.org/packages/1f/ea/cd7209a889163b8dcca139fe32b9687dd05249161a3edda62860430457a5/pydantic_core-2.27.2-cp312-cp312-win_amd64.whl", hash = "sha256:cc3f1a99a4f4f9dd1de4fe0312c114e740b5ddead65bb4102884b384c15d8bc9", size = 1989046, upload-time = "2024-12-18T11:28:58.107Z" }, + { url = "https://files.pythonhosted.org/packages/bc/49/c54baab2f4658c26ac633d798dab66b4c3a9bbf47cff5284e9c182f4137a/pydantic_core-2.27.2-cp312-cp312-win_arm64.whl", hash = "sha256:3911ac9284cd8a1792d3cb26a2da18f3ca26c6908cc434a18f730dc0db7bfa3b", size = 1885092, upload-time = "2024-12-18T11:29:01.335Z" }, +] + +[[package]] +name = "pydocstyle" +version = "6.3.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "snowballstemmer", marker = "sys_platform == 'linux'" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/e9/5c/d5385ca59fd065e3c6a5fe19f9bc9d5ea7f2509fa8c9c22fb6b2031dd953/pydocstyle-6.3.0.tar.gz", hash = "sha256:7ce43f0c0ac87b07494eb9c0b462c0b73e6ff276807f204d6b53edc72b7e44e1", size = 36796, upload-time = "2023-01-17T20:29:19.838Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/36/ea/99ddefac41971acad68f14114f38261c1f27dac0b3ec529824ebc739bdaa/pydocstyle-6.3.0-py3-none-any.whl", hash = "sha256:118762d452a49d6b05e194ef344a55822987a462831ade91ec5c06fd2169d019", size = 38038, upload-time = "2023-01-17T20:29:18.094Z" }, +] + +[[package]] +name = "pyfakefs" +version = "5.7.4" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/8e/f9/3a2f10b1b3e251cec47ab7581d15bc39553cd5a23893cbe0efe633856c4e/pyfakefs-5.7.4.tar.gz", hash = "sha256:4971e65cc80a93a1e6f1e3a4654909c0c493186539084dc9301da3d68c8878fe", size = 213382, upload-time = "2025-01-14T19:24:54.538Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/b9/52/eb08c795d9159da167334a7fa8a23bd04112b4c8b63030a2600711a94143/pyfakefs-5.7.4-py3-none-any.whl", hash = "sha256:3e763d700b91c54ade6388be2cfa4e521abc00e34f7defb84ee511c73031f45f", size = 228706, upload-time = "2025-01-14T19:24:51.436Z" }, +] + +[[package]] +name = "pyflakes" +version = "3.2.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/57/f9/669d8c9c86613c9d568757c7f5824bd3197d7b1c6c27553bc5618a27cce2/pyflakes-3.2.0.tar.gz", hash = "sha256:1c61603ff154621fb2a9172037d84dca3500def8c8b630657d1701f026f8af3f", size = 63788, upload-time = "2024-01-05T00:28:47.703Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/d4/d7/f1b7db88d8e4417c5d47adad627a93547f44bdc9028372dbd2313f34a855/pyflakes-3.2.0-py2.py3-none-any.whl", hash = "sha256:84b5be138a2dfbb40689ca07e2152deb896a65c3a3e24c251c5c62489568074a", size = 62725, upload-time = "2024-01-05T00:28:45.903Z" }, +] + +[[package]] +name = "pygithub" +version = "2.6.1" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "deprecated", marker = "sys_platform == 'linux'" }, + { name = "pyjwt", extra = ["crypto"], marker = "sys_platform == 'linux' or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai')" }, + { name = "pynacl", marker = "sys_platform == 'linux'" }, + { name = "requests", marker = "sys_platform == 'linux'" }, + { name = "typing-extensions", marker = "sys_platform == 'linux'" }, + { name = "urllib3", marker = "sys_platform == 'linux'" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/c0/88/e08ab18dc74b2916f48703ed1a797d57cb64eca0e23b0a9254e13cfe3911/pygithub-2.6.1.tar.gz", hash = "sha256:b5c035392991cca63959e9453286b41b54d83bf2de2daa7d7ff7e4312cebf3bf", size = 3659473, upload-time = "2025-02-21T13:45:58.262Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/ac/fc/a444cd19ccc8c4946a512f3827ed0b3565c88488719d800d54a75d541c0b/PyGithub-2.6.1-py3-none-any.whl", hash = "sha256:6f2fa6d076ccae475f9fc392cc6cdbd54db985d4f69b8833a28397de75ed6ca3", size = 410451, upload-time = "2025-02-21T13:45:55.519Z" }, +] + +[[package]] +name = "pygments" +version = "2.19.1" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/7c/2d/c3338d48ea6cc0feb8446d8e6937e1408088a72a39937982cc6111d17f84/pygments-2.19.1.tar.gz", hash = "sha256:61c16d2a8576dc0649d9f39e089b5f02bcd27fba10d8fb4dcc28173f7a45151f", size = 4968581, upload-time = "2025-01-06T17:26:30.443Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/8a/0b/9fcc47d19c48b59121088dd6da2488a49d5f72dacf8262e2790a1d2c7d15/pygments-2.19.1-py3-none-any.whl", hash = "sha256:9ea1544ad55cecf4b8242fab6dd35a93bbce657034b0611ee383099054ab6d8c", size = 1225293, upload-time = "2025-01-06T17:26:25.553Z" }, +] + +[[package]] +name = "pyhelper-utils" +version = "0.0.42" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "ipdb", marker = "sys_platform == 'linux' or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai')" }, + { name = "python-rrmngmnt", marker = "sys_platform == 'linux' or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai')" }, + { name = "python-simple-logger", marker = "sys_platform == 'linux' or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai')" }, + { name = "requests", marker = "sys_platform == 'linux' or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai')" }, + { name = "rich", marker = "sys_platform == 'linux' or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai')" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/48/d4/f961d328fdc9717a9a6b5679369cccccabb48bf5b8b0da806b6a83425313/pyhelper_utils-0.0.42.tar.gz", hash = "sha256:45d60797b92d463d534e253f9dd5a7e2e2e1c26ea98becc5928cc4546130c20e", size = 9694, upload-time = "2024-10-01T07:02:15.998Z" } + +[[package]] +name = "pyjwt" +version = "2.10.1" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/e7/46/bd74733ff231675599650d3e47f361794b22ef3e3770998dda30d3b63726/pyjwt-2.10.1.tar.gz", hash = "sha256:3cc5772eb20009233caf06e9d8a0577824723b44e6648ee0a2aedb6cf9381953", size = 87785, upload-time = "2024-11-28T03:43:29.933Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/61/ad/689f02752eeec26aed679477e80e632ef1b682313be70793d798c1d5fc8f/PyJWT-2.10.1-py3-none-any.whl", hash = "sha256:dcdd193e30abefd5debf142f9adfcdd2b58004e644f25406ffaebd50bd98dacb", size = 22997, upload-time = "2024-11-28T03:43:27.893Z" }, +] + +[package.optional-dependencies] +crypto = [ + { name = "cryptography", version = "43.0.3", source = { registry = "https://pypi.org/simple" }, marker = "(sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base') or (sys_platform == 'linux' and extra == 'group-9-notebooks-jupyter-datascience-image') or (sys_platform == 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (sys_platform == 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (sys_platform == 'linux' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (sys_platform == 'linux' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (sys_platform == 'linux' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai')" }, + { name = "cryptography", version = "44.0.1", source = { registry = "https://pypi.org/simple" }, marker = "(sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-trustyai') or (sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-elyra-trustyai') or (sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-elyra-trustyai') or (sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-trustyai-image') or (sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image') or (sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-trustyai')" }, +] + +[[package]] +name = "pylint" +version = "3.3.7" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "astroid", marker = "sys_platform == 'linux'" }, + { name = "dill", marker = "sys_platform == 'linux'" }, + { name = "isort", marker = "sys_platform == 'linux'" }, + { name = "mccabe", marker = "sys_platform == 'linux'" }, + { name = "platformdirs", marker = "sys_platform == 'linux'" }, + { name = "tomlkit", marker = "sys_platform == 'linux'" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/1c/e4/83e487d3ddd64ab27749b66137b26dc0c5b5c161be680e6beffdc99070b3/pylint-3.3.7.tar.gz", hash = "sha256:2b11de8bde49f9c5059452e0c310c079c746a0a8eeaa789e5aa966ecc23e4559", size = 1520709, upload-time = "2025-05-04T17:07:51.089Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/e8/83/bff755d09e31b5d25cc7fdc4bf3915d1a404e181f1abf0359af376845c24/pylint-3.3.7-py3-none-any.whl", hash = "sha256:43860aafefce92fca4cf6b61fe199cdc5ae54ea28f9bf4cd49de267b5195803d", size = 522565, upload-time = "2025-05-04T17:07:48.714Z" }, +] + +[[package]] +name = "pymongo" +version = "4.11.3" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "dnspython", marker = "sys_platform == 'linux'" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/db/e6/cdb1105c14a86aa2b1663a6cccc6bf54722bb12fb5d479979628142dde42/pymongo-4.11.3.tar.gz", hash = "sha256:b6f24aec7c0cfcf0ea9f89e92b7d40ba18a1e18c134815758f111ecb0122e61c", size = 2054848, upload-time = "2025-03-18T12:44:44.078Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/7b/9a/11d68ecb0260454e46404302c5a1cb16d93c0d9ad0c8a7bc4df1859f95a7/pymongo-4.11.3-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:31b5ad4ce148b201fa8426d0767517dc68424c3380ef4a981038d4d4350f10ee", size = 840506, upload-time = "2025-03-18T12:43:19.955Z" }, + { url = "https://files.pythonhosted.org/packages/46/db/bfe487b1b1b6c3e86b8152845550d7db15476c12516f5093ec122d840602/pymongo-4.11.3-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:505fb3facf54623b45c96e8e6ad6516f58bb8069f9456e1d7c0abdfdb6929c21", size = 840798, upload-time = "2025-03-18T12:43:21.561Z" }, + { url = "https://files.pythonhosted.org/packages/d4/4b/d1378adbac16829745e57781b140ab7cdbd1046a18cdb796e3adf280c963/pymongo-4.11.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b3f20467d695f49ce4c2d6cb87de458ebb3d098cbc951834a74f36a2e992a6bb", size = 1409884, upload-time = "2025-03-18T12:43:23.1Z" }, + { url = "https://files.pythonhosted.org/packages/33/97/4882a0b6be225d0358b431e6d0fe70fba368b2cedabf38c005f2a73917c9/pymongo-4.11.3-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:65e8a397b03156880a099d55067daa1580a5333aaf4da3b0313bd7e1731e408f", size = 1460828, upload-time = "2025-03-18T12:43:24.504Z" }, + { url = "https://files.pythonhosted.org/packages/4b/a8/fde60995524f5b2794bdf07cad98f5b369a3cfa7e90b6ec081fc57d3b5ea/pymongo-4.11.3-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:0992917ed259f5ca3506ec8009e7c82d398737a4230a607bf44d102cae31e1d6", size = 1435261, upload-time = "2025-03-18T12:43:26.034Z" }, + { url = "https://files.pythonhosted.org/packages/ce/42/d0ac7f445edd6abf5c7197ad83d9902ad1e8f4be767af257bd892684560a/pymongo-4.11.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:2f2f0c3ab8284e0e2674367fa47774411212c86482bbbe78e8ae9fb223b8f6ee", size = 1414380, upload-time = "2025-03-18T12:43:27.458Z" }, + { url = "https://files.pythonhosted.org/packages/e7/02/dd67685b67f7408ed72d801b268988986343208f712b0e90c639358b2d19/pymongo-4.11.3-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:c2240126683f55160f83f587d76955ad1e419a72d5c09539a509bd9d1e20bd53", size = 1383026, upload-time = "2025-03-18T12:43:29.328Z" }, + { url = "https://files.pythonhosted.org/packages/2b/60/07f61ad5ddd39c4d52466ac1ce089c0c8c3d337145efcadbfa61072b1913/pymongo-4.11.3-cp311-cp311-win32.whl", hash = "sha256:be89776c5b8272437a85c904d45e0f1bbc0f21bf11688341938380843dd7fe5f", size = 817664, upload-time = "2025-03-18T12:43:31.551Z" }, + { url = "https://files.pythonhosted.org/packages/e1/f3/073f763f6673ecfb33c13568037cdba499284758cfa54c556cac8a406cb7/pymongo-4.11.3-cp311-cp311-win_amd64.whl", hash = "sha256:c237780760f891cae79abbfc52fda55b584492d5d9452762040aadb2c64ac691", size = 831617, upload-time = "2025-03-18T12:43:33.327Z" }, + { url = "https://files.pythonhosted.org/packages/6d/cf/c606c9d889d8f34dcf80455e045854ef2fa187c439b22a6d30357790c12a/pymongo-4.11.3-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:5f48b7faf4064e5f484989608a59503b11b7f134ca344635e416b1b12e7dc255", size = 895374, upload-time = "2025-03-18T12:43:34.734Z" }, + { url = "https://files.pythonhosted.org/packages/c6/f5/287e84ba6c8e34cb13f798e7e859b4dcbc5fab99261f91202a8027f62ba6/pymongo-4.11.3-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:722f22bf18d208aa752591bde93e018065641711594e7a2fef0432da429264e8", size = 895063, upload-time = "2025-03-18T12:43:36.152Z" }, + { url = "https://files.pythonhosted.org/packages/0e/ba/fe8964ec3f8d7348e9cd6a11864e1e84b2be62ea98ca0ba01a4f5b4d417d/pymongo-4.11.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5be1b35c4897626327c4e8bae14655807c2bc710504fa790bc19a72403142264", size = 1673722, upload-time = "2025-03-18T12:43:37.667Z" }, + { url = "https://files.pythonhosted.org/packages/92/89/925b7160c517b66c80d05b36f63d4cc0d0ff23f01b5150b55936b5fab097/pymongo-4.11.3-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:14f9e4d2172545798738d27bc6293b972c4f1f98cce248aa56e1e62c4c258ca7", size = 1737946, upload-time = "2025-03-18T12:43:39.194Z" }, + { url = "https://files.pythonhosted.org/packages/f8/97/bcedba78ddbc1b8837bf556da55eb08a055e93b331722ecd1dad602a3427/pymongo-4.11.3-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:cd3f7bafe441135f58d2b91a312714f423e15fed5afe3854880c8c61ad78d3ce", size = 1706981, upload-time = "2025-03-18T12:43:41.019Z" }, + { url = "https://files.pythonhosted.org/packages/d7/ce/63719be395ec29b8f71fd267014af4957736b5297a1f51f76ef32d05a0cf/pymongo-4.11.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:73de1b9f416a2662ba95b4b49edc963d47b93760a7e2b561b932c8099d160151", size = 1676948, upload-time = "2025-03-18T12:43:42.502Z" }, + { url = "https://files.pythonhosted.org/packages/c1/36/de366cee39e6c2e64d824d1f2e5672381ec766c51224304d1aebf7db3507/pymongo-4.11.3-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:e24268e2d7ae96eab12161985b39e75a75185393134fc671f4bb1a16f50bf6f4", size = 1636072, upload-time = "2025-03-18T12:43:44.171Z" }, + { url = "https://files.pythonhosted.org/packages/07/48/34751291a152e8098b4cf6f467046f00edd71b695d5cf6be1b15778cda63/pymongo-4.11.3-cp312-cp312-win32.whl", hash = "sha256:33a936d3c1828e4f52bed3dad6191a3618cc28ab056e2770390aec88d9e9f9ea", size = 864025, upload-time = "2025-03-18T12:43:45.663Z" }, + { url = "https://files.pythonhosted.org/packages/96/8a/604fab1e1f45deb0dc19e06053369e7db44e3d1359a39e0fe376bdb95b41/pymongo-4.11.3-cp312-cp312-win_amd64.whl", hash = "sha256:c4673d8ef0c8ef712491a750adf64f7998202a82abd72be5be749749275b3edb", size = 882290, upload-time = "2025-03-18T12:43:47.136Z" }, +] + +[[package]] +name = "pynacl" +version = "1.5.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "cffi", marker = "sys_platform == 'linux'" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/a7/22/27582568be639dfe22ddb3902225f91f2f17ceff88ce80e4db396c8986da/PyNaCl-1.5.0.tar.gz", hash = "sha256:8ac7448f09ab85811607bdd21ec2464495ac8b7c66d146bf545b0f08fb9220ba", size = 3392854, upload-time = "2022-01-07T22:05:41.134Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/ce/75/0b8ede18506041c0bf23ac4d8e2971b4161cd6ce630b177d0a08eb0d8857/PyNaCl-1.5.0-cp36-abi3-macosx_10_10_universal2.whl", hash = "sha256:401002a4aaa07c9414132aaed7f6836ff98f59277a234704ff66878c2ee4a0d1", size = 349920, upload-time = "2022-01-07T22:05:49.156Z" }, + { url = "https://files.pythonhosted.org/packages/59/bb/fddf10acd09637327a97ef89d2a9d621328850a72f1fdc8c08bdf72e385f/PyNaCl-1.5.0-cp36-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.manylinux_2_24_aarch64.whl", hash = "sha256:52cb72a79269189d4e0dc537556f4740f7f0a9ec41c1322598799b0bdad4ef92", size = 601722, upload-time = "2022-01-07T22:05:50.989Z" }, + { url = "https://files.pythonhosted.org/packages/5d/70/87a065c37cca41a75f2ce113a5a2c2aa7533be648b184ade58971b5f7ccc/PyNaCl-1.5.0-cp36-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a36d4a9dda1f19ce6e03c9a784a2921a4b726b02e1c736600ca9c22029474394", size = 680087, upload-time = "2022-01-07T22:05:52.539Z" }, + { url = "https://files.pythonhosted.org/packages/ee/87/f1bb6a595f14a327e8285b9eb54d41fef76c585a0edef0a45f6fc95de125/PyNaCl-1.5.0-cp36-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_24_x86_64.whl", hash = "sha256:0c84947a22519e013607c9be43706dd42513f9e6ae5d39d3613ca1e142fba44d", size = 856678, upload-time = "2022-01-07T22:05:54.251Z" }, + { url = "https://files.pythonhosted.org/packages/66/28/ca86676b69bf9f90e710571b67450508484388bfce09acf8a46f0b8c785f/PyNaCl-1.5.0-cp36-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:06b8f6fa7f5de8d5d2f7573fe8c863c051225a27b61e6860fd047b1775807858", size = 1133660, upload-time = "2022-01-07T22:05:56.056Z" }, + { url = "https://files.pythonhosted.org/packages/3d/85/c262db650e86812585e2bc59e497a8f59948a005325a11bbbc9ecd3fe26b/PyNaCl-1.5.0-cp36-abi3-musllinux_1_1_aarch64.whl", hash = "sha256:a422368fc821589c228f4c49438a368831cb5bbc0eab5ebe1d7fac9dded6567b", size = 663824, upload-time = "2022-01-07T22:05:57.434Z" }, + { url = "https://files.pythonhosted.org/packages/fd/1a/cc308a884bd299b651f1633acb978e8596c71c33ca85e9dc9fa33a5399b9/PyNaCl-1.5.0-cp36-abi3-musllinux_1_1_x86_64.whl", hash = "sha256:61f642bf2378713e2c2e1de73444a3778e5f0a38be6fee0fe532fe30060282ff", size = 1117912, upload-time = "2022-01-07T22:05:58.665Z" }, + { url = "https://files.pythonhosted.org/packages/25/2d/b7df6ddb0c2a33afdb358f8af6ea3b8c4d1196ca45497dd37a56f0c122be/PyNaCl-1.5.0-cp36-abi3-win32.whl", hash = "sha256:e46dae94e34b085175f8abb3b0aaa7da40767865ac82c928eeb9e57e1ea8a543", size = 204624, upload-time = "2022-01-07T22:06:00.085Z" }, + { url = "https://files.pythonhosted.org/packages/5e/22/d3db169895faaf3e2eda892f005f433a62db2decbcfbc2f61e6517adfa87/PyNaCl-1.5.0-cp36-abi3-win_amd64.whl", hash = "sha256:20f42270d27e1b6a29f54032090b972d97f0a1b0948cc52392041ef7831fee93", size = 212141, upload-time = "2022-01-07T22:06:01.861Z" }, +] + +[[package]] +name = "pyodbc" +version = "5.2.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/a0/36/a1ac7d23a1611e7ccd4d27df096f3794e8d1e7faa040260d9d41b6fc3185/pyodbc-5.2.0.tar.gz", hash = "sha256:de8be39809c8ddeeee26a4b876a6463529cd487a60d1393eb2a93e9bcd44a8f5", size = 116908, upload-time = "2024-10-16T01:40:13.425Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/8f/a2/5907ce319a571eb1e271d6a475920edfeacd92da1021bb2a15ed1b7f6ac1/pyodbc-5.2.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:4627779f0a608b51ce2d2fe6d1d395384e65ca36248bf9dbb6d7cf2c8fda1cab", size = 72536, upload-time = "2024-10-16T01:39:34.715Z" }, + { url = "https://files.pythonhosted.org/packages/e1/b8/bd438ab2bb9481615142784b0c9778079a87ae1bca7a0fe8aabfc088aa9f/pyodbc-5.2.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:4d997d3b6551273647825c734158ca8a6f682df269f6b3975f2499c01577ddec", size = 71825, upload-time = "2024-10-16T01:39:36.343Z" }, + { url = "https://files.pythonhosted.org/packages/8b/82/cf71ae99b511a7f20c380ce470de233a0291fa3798afa74e0adc8fad1675/pyodbc-5.2.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5102007a8c78dd2fc1c1b6f6147de8cfc020f81013e4b46c33e66aaa7d1bf7b1", size = 342304, upload-time = "2024-10-16T01:39:37.82Z" }, + { url = "https://files.pythonhosted.org/packages/43/ea/03fe042f4a390df05e753ddd21c6cab006baae1eee71ce230f6e2a883944/pyodbc-5.2.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:7e3cbc7075a46c411b531ada557c4aef13d034060a70077717124cabc1717e2d", size = 346186, upload-time = "2024-10-16T01:39:39.3Z" }, + { url = "https://files.pythonhosted.org/packages/f9/80/48178bb50990147adb72ec9e377e94517a0dfaf2f2a6e3fe477d9a33671f/pyodbc-5.2.0-cp311-cp311-win32.whl", hash = "sha256:de1ee7ec2eb326b7be5e2c4ce20d472c5ef1a6eb838d126d1d26779ff5486e49", size = 62418, upload-time = "2024-10-16T01:39:40.797Z" }, + { url = "https://files.pythonhosted.org/packages/7c/6b/f0ad7d8a535d58f35f375ffbf367c68d0ec54452a431d23b0ebee4cd44c6/pyodbc-5.2.0-cp311-cp311-win_amd64.whl", hash = "sha256:113f904b9852c12f10c7a3288f5a3563ecdbbefe3ccc829074a9eb8255edcd29", size = 68871, upload-time = "2024-10-16T01:39:41.997Z" }, + { url = "https://files.pythonhosted.org/packages/26/26/104525b728fedfababd3143426b9d0008c70f0d604a3bf5d4773977d83f4/pyodbc-5.2.0-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:be43d1ece4f2cf4d430996689d89a1a15aeb3a8da8262527e5ced5aee27e89c3", size = 73014, upload-time = "2024-10-16T01:39:43.332Z" }, + { url = "https://files.pythonhosted.org/packages/4f/7d/bb632488b603bcd2a6753b858e8bc7dd56146dd19bd72003cc09ae6e3fc0/pyodbc-5.2.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:9f7badd0055221a744d76c11440c0856fd2846ed53b6555cf8f0a8893a3e4b03", size = 72515, upload-time = "2024-10-16T01:39:44.506Z" }, + { url = "https://files.pythonhosted.org/packages/ab/38/a1b9bfe5a7062672268553c2d6ff93676173b0fb4bd583e8c4f74a0e296f/pyodbc-5.2.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ad633c52f4f4e7691daaa2278d6e6ebb2fe4ae7709e610e22c7dd1a1d620cf8b", size = 348561, upload-time = "2024-10-16T01:39:45.986Z" }, + { url = "https://files.pythonhosted.org/packages/71/82/ddb1c41c682550116f391aa6cab2052910046a30d63014bbe6d09c4958f4/pyodbc-5.2.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:97d086a8f7a302b74c9c2e77bedf954a603b19168af900d4d3a97322e773df63", size = 353962, upload-time = "2024-10-16T01:39:47.254Z" }, + { url = "https://files.pythonhosted.org/packages/e5/29/fec0e739d0c1cab155843ed71d0717f5e1694effe3f28d397168f48bcd92/pyodbc-5.2.0-cp312-cp312-win32.whl", hash = "sha256:0e4412f8e608db2a4be5bcc75f9581f386ed6a427dbcb5eac795049ba6fc205e", size = 63050, upload-time = "2024-10-16T01:39:48.8Z" }, + { url = "https://files.pythonhosted.org/packages/21/7f/3a47e022a97b017ffb73351a1061e4401bcb5aa4fc0162d04f4e5452e4fc/pyodbc-5.2.0-cp312-cp312-win_amd64.whl", hash = "sha256:b1f5686b142759c5b2bdbeaa0692622c2ebb1f10780eb3c174b85f5607fbcf55", size = 69485, upload-time = "2024-10-16T01:39:49.732Z" }, +] + +[[package]] +name = "pyparsing" +version = "3.2.3" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/bb/22/f1129e69d94ffff626bdb5c835506b3a5b4f3d070f17ea295e12c2c6f60f/pyparsing-3.2.3.tar.gz", hash = "sha256:b9c13f1ab8b3b542f72e28f634bad4de758ab3ce4546e4301970ad6fa77c38be", size = 1088608, upload-time = "2025-03-25T05:01:28.114Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/05/e7/df2285f3d08fee213f2d041540fa4fc9ca6c2d44cf36d3a035bf2a8d2bcc/pyparsing-3.2.3-py3-none-any.whl", hash = "sha256:a749938e02d6fd0b59b356ca504a24982314bb090c383e3cf201c95ef7e2bfcf", size = 111120, upload-time = "2025-03-25T05:01:24.908Z" }, +] + +[[package]] +name = "pyright" +version = "1.1.398" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "nodeenv", marker = "sys_platform == 'linux' or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai')" }, + { name = "typing-extensions", marker = "sys_platform == 'linux' or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai')" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/24/d6/48740f1d029e9fc4194880d1ad03dcf0ba3a8f802e0e166b8f63350b3584/pyright-1.1.398.tar.gz", hash = "sha256:357a13edd9be8082dc73be51190913e475fa41a6efb6ec0d4b7aab3bc11638d8", size = 3892675, upload-time = "2025-03-26T10:06:06.063Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/58/e0/5283593f61b3c525d6d7e94cfb6b3ded20b3df66e953acaf7bb4f23b3f6e/pyright-1.1.398-py3-none-any.whl", hash = "sha256:0a70bfd007d9ea7de1cf9740e1ad1a40a122592cfe22a3f6791b06162ad08753", size = 5780235, upload-time = "2025-03-26T10:06:03.994Z" }, +] + +[[package]] +name = "pytest" +version = "8.3.4" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "iniconfig", marker = "sys_platform == 'linux' or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai')" }, + { name = "packaging", marker = "sys_platform == 'linux' or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai')" }, + { name = "pluggy", marker = "sys_platform == 'linux' or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai')" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/05/35/30e0d83068951d90a01852cb1cef56e5d8a09d20c7f511634cc2f7e0372a/pytest-8.3.4.tar.gz", hash = "sha256:965370d062bce11e73868e0335abac31b4d3de0e82f4007408d242b4f8610761", size = 1445919, upload-time = "2024-12-01T12:54:25.98Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/11/92/76a1c94d3afee238333bc0a42b82935dd8f9cf8ce9e336ff87ee14d9e1cf/pytest-8.3.4-py3-none-any.whl", hash = "sha256:50e16d954148559c9a74109af1eaf0c945ba2d8f30f0a3d3335edde19788b6f6", size = 343083, upload-time = "2024-12-01T12:54:19.735Z" }, +] + +[[package]] +name = "pytest-subtests" +version = "0.14.1" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "attrs", marker = "sys_platform == 'linux' or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai')" }, + { name = "pytest", marker = "sys_platform == 'linux' or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai')" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/c0/4c/ba9eab21a2250c2d46c06c0e3cd316850fde9a90da0ac8d0202f074c6817/pytest_subtests-0.14.1.tar.gz", hash = "sha256:350c00adc36c3aff676a66135c81aed9e2182e15f6c3ec8721366918bbbf7580", size = 17632, upload-time = "2024-12-10T00:21:04.856Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/a9/b7/7ca948d35642ae72500efda6ba6fa61dcb6683feb596d19c4747c63c0789/pytest_subtests-0.14.1-py3-none-any.whl", hash = "sha256:e92a780d98b43118c28a16044ad9b841727bd7cb6a417073b38fd2d7ccdf052d", size = 8833, upload-time = "2024-12-10T00:20:58.873Z" }, +] + +[[package]] +name = "python-benedict" +version = "0.33.2" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "python-fsutil", marker = "sys_platform == 'linux' or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai')" }, + { name = "python-slugify", marker = "sys_platform == 'linux' or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai')" }, + { name = "requests", marker = "sys_platform == 'linux' or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai')" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/57/63/a3d1de78d75b28e9105c236565b9f0366e009abb489a5acb09911fcf5768/python-benedict-0.33.2.tar.gz", hash = "sha256:662de43bffb4e127da2056447f8ddd7f6f5c89b72dd66d289cf9abd1cc2720c8", size = 53224, upload-time = "2024-03-04T23:25:42.408Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/68/5f/e32644b743d33142c6c43af50c86c6a5f535c3b3fa5b50c92aecded37741/python_benedict-0.33.2-py3-none-any.whl", hash = "sha256:50a69b601b34d4ad7b67fe94e3266ec05046bc547a4132fe43fd8fbd41aeefaa", size = 51285, upload-time = "2024-03-04T23:25:39.899Z" }, +] + +[[package]] +name = "python-dateutil" +version = "2.9.0.post0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "six", marker = "sys_platform == 'linux'" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/66/c0/0c8b6ad9f17a802ee498c46e004a0eb49bc148f2fd230864601a86dcf6db/python-dateutil-2.9.0.post0.tar.gz", hash = "sha256:37dd54208da7e1cd875388217d5e00ebd4179249f90fb72437e91a35459a0ad3", size = 342432, upload-time = "2024-03-01T18:36:20.211Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/ec/57/56b9bcc3c9c6a792fcbaf139543cee77261f3651ca9da0c93f5c1221264b/python_dateutil-2.9.0.post0-py2.py3-none-any.whl", hash = "sha256:a8b2bc7bffae282281c8140a97d3aa9c14da0b136dfe83f850eea9a5f7470427", size = 229892, upload-time = "2024-03-01T18:36:18.57Z" }, +] + +[[package]] +name = "python-dotenv" +version = "1.0.1" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/bc/57/e84d88dfe0aec03b7a2d4327012c1627ab5f03652216c63d49846d7a6c58/python-dotenv-1.0.1.tar.gz", hash = "sha256:e324ee90a023d808f1959c46bcbc04446a10ced277783dc6ee09987c37ec10ca", size = 39115, upload-time = "2024-01-23T06:33:00.505Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/6a/3e/b68c118422ec867fa7ab88444e1274aa40681c606d59ac27de5a5588f082/python_dotenv-1.0.1-py3-none-any.whl", hash = "sha256:f7b63ef50f1b690dddf550d03497b66d609393b40b564ed0d674909a68ebf16a", size = 19863, upload-time = "2024-01-23T06:32:58.246Z" }, +] + +[[package]] +name = "python-fsutil" +version = "0.15.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/f9/4a/494de3f8b079f077d687f7b3e32b963f7613eaae2d7b5c1be34d7eafd19a/python_fsutil-0.15.0.tar.gz", hash = "sha256:b51d8ab7ee218314480ea251fff7fef513be4fbccfe72a5af4ff2954f8a4a2c4", size = 29669, upload-time = "2025-02-06T17:47:55.769Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/33/de/fc2c3fa9d1f29c017c8eba2448efe86495b762111cf613a4c6d860158970/python_fsutil-0.15.0-py3-none-any.whl", hash = "sha256:8ae31def522916e35caf67723b8526fe6e5fcc1e160ea2dc23c845567708ca6e", size = 20915, upload-time = "2025-02-06T17:47:53.658Z" }, +] + +[[package]] +name = "python-json-logger" +version = "3.3.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/9e/de/d3144a0bceede957f961e975f3752760fbe390d57fbe194baf709d8f1f7b/python_json_logger-3.3.0.tar.gz", hash = "sha256:12b7e74b17775e7d565129296105bbe3910842d9d0eb083fc83a6a617aa8df84", size = 16642, upload-time = "2025-03-07T07:08:27.301Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/08/20/0f2523b9e50a8052bc6a8b732dfc8568abbdc42010aef03a2d750bdab3b2/python_json_logger-3.3.0-py3-none-any.whl", hash = "sha256:dd980fae8cffb24c13caf6e158d3d61c0d6d22342f932cb6e9deedab3d35eec7", size = 15163, upload-time = "2025-03-07T07:08:25.627Z" }, +] + +[[package]] +name = "python-lsp-jsonrpc" +version = "1.1.2" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "ujson", marker = "sys_platform == 'linux'" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/48/b6/fd92e2ea4635d88966bb42c20198df1a981340f07843b5e3c6694ba3557b/python-lsp-jsonrpc-1.1.2.tar.gz", hash = "sha256:4688e453eef55cd952bff762c705cedefa12055c0aec17a06f595bcc002cc912", size = 15298, upload-time = "2023-09-23T17:48:30.451Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/cb/d9/656659d5b5d5f402b2b174cd0ba9bc827e07ce3c0bf88da65424baf64af8/python_lsp_jsonrpc-1.1.2-py3-none-any.whl", hash = "sha256:7339c2e9630ae98903fdaea1ace8c47fba0484983794d6aafd0bd8989be2b03c", size = 8805, upload-time = "2023-09-23T17:48:28.804Z" }, +] + +[[package]] +name = "python-lsp-server" +version = "1.12.2" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "docstring-to-markdown", marker = "sys_platform == 'linux'" }, + { name = "jedi", marker = "sys_platform == 'linux'" }, + { name = "pluggy", marker = "sys_platform == 'linux'" }, + { name = "python-lsp-jsonrpc", marker = "sys_platform == 'linux'" }, + { name = "ujson", marker = "sys_platform == 'linux'" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/cc/0f/3d63c5f37edca529a2a003a30add97dcce67a83a99dd932528f623aa1df9/python_lsp_server-1.12.2.tar.gz", hash = "sha256:fea039a36b3132774d0f803671184cf7dde0c688e7b924f23a6359a66094126d", size = 115054, upload-time = "2025-02-07T23:40:03.548Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/cb/e7/28010a326ef591e1409daf9d57a47de94156c147ad1befe74d8196d82729/python_lsp_server-1.12.2-py3-none-any.whl", hash = "sha256:750116459449184ba20811167cdf96f91296ae12f1f65ebd975c5c159388111b", size = 74773, upload-time = "2025-02-07T23:40:01.581Z" }, +] + +[package.optional-dependencies] +all = [ + { name = "autopep8", marker = "sys_platform == 'linux'" }, + { name = "flake8", marker = "sys_platform == 'linux'" }, + { name = "mccabe", marker = "sys_platform == 'linux'" }, + { name = "pycodestyle", marker = "sys_platform == 'linux'" }, + { name = "pydocstyle", marker = "sys_platform == 'linux'" }, + { name = "pyflakes", marker = "sys_platform == 'linux'" }, + { name = "pylint", marker = "sys_platform == 'linux'" }, + { name = "rope", marker = "sys_platform == 'linux'" }, + { name = "whatthepatch", marker = "sys_platform == 'linux'" }, + { name = "yapf", marker = "sys_platform == 'linux'" }, +] + +[[package]] +name = "python-rrmngmnt" +version = "0.1.32" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "netaddr", marker = "sys_platform == 'linux' or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai')" }, + { name = "paramiko", marker = "sys_platform == 'linux' or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai')" }, + { name = "pbr", marker = "sys_platform == 'linux' or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai')" }, + { name = "six", marker = "sys_platform == 'linux' or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai')" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/45/60/571982c7af8f5453b86d332041d58076642d26089ea1481ce54e8f7f1305/python-rrmngmnt-0.1.32.zip", hash = "sha256:0953f9e9e3911d4a310282513261ed7572fbc269f78c8e3d0680f84ba9955526", size = 84778, upload-time = "2023-06-06T05:27:04.071Z" } + +[[package]] +name = "python-simple-logger" +version = "1.0.42" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "colorlog", marker = "sys_platform == 'linux' or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai')" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/28/64/43d256b46b8f9e2d227425b896cc8f7eb6cfc276219be8924f5d622a8038/python_simple_logger-1.0.42.tar.gz", hash = "sha256:ad8ffd2019bcf824377d4ac2ac295b29210de0572ac85b45a8e250acf9ca0053", size = 8236, upload-time = "2024-10-22T07:27:41.82Z" } + +[[package]] +name = "python-slugify" +version = "8.0.4" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "text-unidecode", marker = "sys_platform == 'linux' or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai')" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/87/c7/5e1547c44e31da50a460df93af11a535ace568ef89d7a811069ead340c4a/python-slugify-8.0.4.tar.gz", hash = "sha256:59202371d1d05b54a9e7720c5e038f928f45daaffe41dd10822f3907b937c856", size = 10921, upload-time = "2024-02-08T18:32:45.488Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/a4/62/02da182e544a51a5c3ccf4b03ab79df279f9c60c5e82d5e8bec7ca26ac11/python_slugify-8.0.4-py2.py3-none-any.whl", hash = "sha256:276540b79961052b66b7d116620b36518847f52d5fd9e3a70164fc8c50faa6b8", size = 10051, upload-time = "2024-02-08T18:32:43.911Z" }, +] + +[[package]] +name = "pytoolconfig" +version = "1.3.1" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "packaging", marker = "sys_platform == 'linux'" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/18/dc/abf70d2c2bcac20e8c71a7cdf6d44e4ddba4edf65acb179248d554d743db/pytoolconfig-1.3.1.tar.gz", hash = "sha256:51e6bd1a6f108238ae6aab6a65e5eed5e75d456be1c2bf29b04e5c1e7d7adbae", size = 16655, upload-time = "2024-01-11T16:25:11.914Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/92/44/da239917f5711ca7105f7d7f9e2765716dd883b241529beafc0f28504725/pytoolconfig-1.3.1-py3-none-any.whl", hash = "sha256:5d8cea8ae1996938ec3eaf44567bbc5ef1bc900742190c439a44a704d6e1b62b", size = 17022, upload-time = "2024-01-11T16:25:10.589Z" }, +] + +[package.optional-dependencies] +global = [ + { name = "platformdirs", marker = "sys_platform == 'linux'" }, +] + +[[package]] +name = "pytorch-triton-rocm" +version = "3.2.0" +source = { registry = "https://download.pytorch.org/whl/rocm6.2.4" } +wheels = [ + { url = "https://download.pytorch.org/whl/pytorch_triton_rocm-3.2.0-cp311-cp311-linux_x86_64.whl", hash = "sha256:54d13ab44cbc9f157549cd8e46ec9b94b2ef3da3ced658497eeed206daa53d5f" }, + { url = "https://download.pytorch.org/whl/pytorch_triton_rocm-3.2.0-cp312-cp312-linux_x86_64.whl", hash = "sha256:76523e0e01d996ca0eeddf77e2436f696155cbb40a97f0759c00c0a1e8c2ae17" }, +] + +[[package]] +name = "pytz" +version = "2025.2" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/f8/bf/abbd3cdfb8fbc7fb3d4d38d320f2441b1e7cbe29be4f23797b4a2b5d8aac/pytz-2025.2.tar.gz", hash = "sha256:360b9e3dbb49a209c21ad61809c7fb453643e048b38924c765813546746e81c3", size = 320884, upload-time = "2025-03-25T02:25:00.538Z" } +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 = "pyyaml" +version = "6.0.2" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/54/ed/79a089b6be93607fa5cdaedf301d7dfb23af5f25c398d5ead2525b063e17/pyyaml-6.0.2.tar.gz", hash = "sha256:d584d9ec91ad65861cc08d42e834324ef890a082e591037abe114850ff7bbc3e", size = 130631, upload-time = "2024-08-06T20:33:50.674Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/f8/aa/7af4e81f7acba21a4c6be026da38fd2b872ca46226673c89a758ebdc4fd2/PyYAML-6.0.2-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:cc1c1159b3d456576af7a3e4d1ba7e6924cb39de8f67111c735f6fc832082774", size = 184612, upload-time = "2024-08-06T20:32:03.408Z" }, + { url = "https://files.pythonhosted.org/packages/8b/62/b9faa998fd185f65c1371643678e4d58254add437edb764a08c5a98fb986/PyYAML-6.0.2-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:1e2120ef853f59c7419231f3bf4e7021f1b936f6ebd222406c3b60212205d2ee", size = 172040, upload-time = "2024-08-06T20:32:04.926Z" }, + { url = "https://files.pythonhosted.org/packages/ad/0c/c804f5f922a9a6563bab712d8dcc70251e8af811fce4524d57c2c0fd49a4/PyYAML-6.0.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5d225db5a45f21e78dd9358e58a98702a0302f2659a3c6cd320564b75b86f47c", size = 736829, upload-time = "2024-08-06T20:32:06.459Z" }, + { url = "https://files.pythonhosted.org/packages/51/16/6af8d6a6b210c8e54f1406a6b9481febf9c64a3109c541567e35a49aa2e7/PyYAML-6.0.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:5ac9328ec4831237bec75defaf839f7d4564be1e6b25ac710bd1a96321cc8317", size = 764167, upload-time = "2024-08-06T20:32:08.338Z" }, + { url = "https://files.pythonhosted.org/packages/75/e4/2c27590dfc9992f73aabbeb9241ae20220bd9452df27483b6e56d3975cc5/PyYAML-6.0.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:3ad2a3decf9aaba3d29c8f537ac4b243e36bef957511b4766cb0057d32b0be85", size = 762952, upload-time = "2024-08-06T20:32:14.124Z" }, + { url = "https://files.pythonhosted.org/packages/9b/97/ecc1abf4a823f5ac61941a9c00fe501b02ac3ab0e373c3857f7d4b83e2b6/PyYAML-6.0.2-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:ff3824dc5261f50c9b0dfb3be22b4567a6f938ccce4587b38952d85fd9e9afe4", size = 735301, upload-time = "2024-08-06T20:32:16.17Z" }, + { url = "https://files.pythonhosted.org/packages/45/73/0f49dacd6e82c9430e46f4a027baa4ca205e8b0a9dce1397f44edc23559d/PyYAML-6.0.2-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:797b4f722ffa07cc8d62053e4cff1486fa6dc094105d13fea7b1de7d8bf71c9e", size = 756638, upload-time = "2024-08-06T20:32:18.555Z" }, + { url = "https://files.pythonhosted.org/packages/22/5f/956f0f9fc65223a58fbc14459bf34b4cc48dec52e00535c79b8db361aabd/PyYAML-6.0.2-cp311-cp311-win32.whl", hash = "sha256:11d8f3dd2b9c1207dcaf2ee0bbbfd5991f571186ec9cc78427ba5bd32afae4b5", size = 143850, upload-time = "2024-08-06T20:32:19.889Z" }, + { url = "https://files.pythonhosted.org/packages/ed/23/8da0bbe2ab9dcdd11f4f4557ccaf95c10b9811b13ecced089d43ce59c3c8/PyYAML-6.0.2-cp311-cp311-win_amd64.whl", hash = "sha256:e10ce637b18caea04431ce14fabcf5c64a1c61ec9c56b071a4b7ca131ca52d44", size = 161980, upload-time = "2024-08-06T20:32:21.273Z" }, + { url = "https://files.pythonhosted.org/packages/86/0c/c581167fc46d6d6d7ddcfb8c843a4de25bdd27e4466938109ca68492292c/PyYAML-6.0.2-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:c70c95198c015b85feafc136515252a261a84561b7b1d51e3384e0655ddf25ab", size = 183873, upload-time = "2024-08-06T20:32:25.131Z" }, + { url = "https://files.pythonhosted.org/packages/a8/0c/38374f5bb272c051e2a69281d71cba6fdb983413e6758b84482905e29a5d/PyYAML-6.0.2-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:ce826d6ef20b1bc864f0a68340c8b3287705cae2f8b4b1d932177dcc76721725", size = 173302, upload-time = "2024-08-06T20:32:26.511Z" }, + { url = "https://files.pythonhosted.org/packages/c3/93/9916574aa8c00aa06bbac729972eb1071d002b8e158bd0e83a3b9a20a1f7/PyYAML-6.0.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1f71ea527786de97d1a0cc0eacd1defc0985dcf6b3f17bb77dcfc8c34bec4dc5", size = 739154, upload-time = "2024-08-06T20:32:28.363Z" }, + { url = "https://files.pythonhosted.org/packages/95/0f/b8938f1cbd09739c6da569d172531567dbcc9789e0029aa070856f123984/PyYAML-6.0.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:9b22676e8097e9e22e36d6b7bda33190d0d400f345f23d4065d48f4ca7ae0425", size = 766223, upload-time = "2024-08-06T20:32:30.058Z" }, + { url = "https://files.pythonhosted.org/packages/b9/2b/614b4752f2e127db5cc206abc23a8c19678e92b23c3db30fc86ab731d3bd/PyYAML-6.0.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:80bab7bfc629882493af4aa31a4cfa43a4c57c83813253626916b8c7ada83476", size = 767542, upload-time = "2024-08-06T20:32:31.881Z" }, + { url = "https://files.pythonhosted.org/packages/d4/00/dd137d5bcc7efea1836d6264f049359861cf548469d18da90cd8216cf05f/PyYAML-6.0.2-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:0833f8694549e586547b576dcfaba4a6b55b9e96098b36cdc7ebefe667dfed48", size = 731164, upload-time = "2024-08-06T20:32:37.083Z" }, + { url = "https://files.pythonhosted.org/packages/c9/1f/4f998c900485e5c0ef43838363ba4a9723ac0ad73a9dc42068b12aaba4e4/PyYAML-6.0.2-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:8b9c7197f7cb2738065c481a0461e50ad02f18c78cd75775628afb4d7137fb3b", size = 756611, upload-time = "2024-08-06T20:32:38.898Z" }, + { url = "https://files.pythonhosted.org/packages/df/d1/f5a275fdb252768b7a11ec63585bc38d0e87c9e05668a139fea92b80634c/PyYAML-6.0.2-cp312-cp312-win32.whl", hash = "sha256:ef6107725bd54b262d6dedcc2af448a266975032bc85ef0172c5f059da6325b4", size = 140591, upload-time = "2024-08-06T20:32:40.241Z" }, + { url = "https://files.pythonhosted.org/packages/0c/e8/4f648c598b17c3d06e8753d7d13d57542b30d56e6c2dedf9c331ae56312e/PyYAML-6.0.2-cp312-cp312-win_amd64.whl", hash = "sha256:7e7401d0de89a9a855c839bc697c079a4af81cf878373abd7dc625847d25cbd8", size = 156338, upload-time = "2024-08-06T20:32:41.93Z" }, +] + +[[package]] +name = "pyzmq" +version = "27.0.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "cffi", marker = "implementation_name == 'pypy' and sys_platform == 'linux'" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/f1/06/50a4e9648b3e8b992bef8eb632e457307553a89d294103213cfd47b3da69/pyzmq-27.0.0.tar.gz", hash = "sha256:b1f08eeb9ce1510e6939b6e5dcd46a17765e2333daae78ecf4606808442e52cf", size = 280478, upload-time = "2025-06-13T14:09:07.087Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/44/df/84c630654106d9bd9339cdb564aa941ed41b023a0264251d6743766bb50e/pyzmq-27.0.0-cp311-cp311-macosx_10_15_universal2.whl", hash = "sha256:21457825249b2a53834fa969c69713f8b5a79583689387a5e7aed880963ac564", size = 1332718, upload-time = "2025-06-13T14:07:16.555Z" }, + { url = "https://files.pythonhosted.org/packages/c1/8e/f6a5461a07654d9840d256476434ae0ff08340bba562a455f231969772cb/pyzmq-27.0.0-cp311-cp311-manylinux2014_i686.manylinux_2_17_i686.whl", hash = "sha256:1958947983fef513e6e98eff9cb487b60bf14f588dc0e6bf35fa13751d2c8251", size = 908248, upload-time = "2025-06-13T14:07:18.033Z" }, + { url = "https://files.pythonhosted.org/packages/7c/93/82863e8d695a9a3ae424b63662733ae204a295a2627d52af2f62c2cd8af9/pyzmq-27.0.0-cp311-cp311-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:c0dc628b5493f9a8cd9844b8bee9732ef587ab00002157c9329e4fc0ef4d3afa", size = 668647, upload-time = "2025-06-13T14:07:19.378Z" }, + { url = "https://files.pythonhosted.org/packages/f3/85/15278769b348121eacdbfcbd8c4d40f1102f32fa6af5be1ffc032ed684be/pyzmq-27.0.0-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:f7bbe9e1ed2c8d3da736a15694d87c12493e54cc9dc9790796f0321794bbc91f", size = 856600, upload-time = "2025-06-13T14:07:20.906Z" }, + { url = "https://files.pythonhosted.org/packages/d4/af/1c469b3d479bd095edb28e27f12eee10b8f00b356acbefa6aeb14dd295d1/pyzmq-27.0.0-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:dc1091f59143b471d19eb64f54bae4f54bcf2a466ffb66fe45d94d8d734eb495", size = 1657748, upload-time = "2025-06-13T14:07:22.549Z" }, + { url = "https://files.pythonhosted.org/packages/8c/f4/17f965d0ee6380b1d6326da842a50e4b8b9699745161207945f3745e8cb5/pyzmq-27.0.0-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:7011ade88c8e535cf140f8d1a59428676fbbce7c6e54fefce58bf117aefb6667", size = 2034311, upload-time = "2025-06-13T14:07:23.966Z" }, + { url = "https://files.pythonhosted.org/packages/e0/6e/7c391d81fa3149fd759de45d298003de6cfab343fb03e92c099821c448db/pyzmq-27.0.0-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:2c386339d7e3f064213aede5d03d054b237937fbca6dd2197ac8cf3b25a6b14e", size = 1893630, upload-time = "2025-06-13T14:07:25.899Z" }, + { url = "https://files.pythonhosted.org/packages/0e/e0/eaffe7a86f60e556399e224229e7769b717f72fec0706b70ab2c03aa04cb/pyzmq-27.0.0-cp311-cp311-win32.whl", hash = "sha256:0546a720c1f407b2172cb04b6b094a78773491497e3644863cf5c96c42df8cff", size = 567706, upload-time = "2025-06-13T14:07:27.595Z" }, + { url = "https://files.pythonhosted.org/packages/c9/05/89354a8cffdcce6e547d48adaaf7be17007fc75572123ff4ca90a4ca04fc/pyzmq-27.0.0-cp311-cp311-win_amd64.whl", hash = "sha256:15f39d50bd6c9091c67315ceb878a4f531957b121d2a05ebd077eb35ddc5efed", size = 630322, upload-time = "2025-06-13T14:07:28.938Z" }, + { url = "https://files.pythonhosted.org/packages/fa/07/4ab976d5e1e63976719389cc4f3bfd248a7f5f2bb2ebe727542363c61b5f/pyzmq-27.0.0-cp311-cp311-win_arm64.whl", hash = "sha256:c5817641eebb391a2268c27fecd4162448e03538387093cdbd8bf3510c316b38", size = 558435, upload-time = "2025-06-13T14:07:30.256Z" }, + { url = "https://files.pythonhosted.org/packages/93/a7/9ad68f55b8834ede477842214feba6a4c786d936c022a67625497aacf61d/pyzmq-27.0.0-cp312-abi3-macosx_10_15_universal2.whl", hash = "sha256:cbabc59dcfaac66655c040dfcb8118f133fb5dde185e5fc152628354c1598e52", size = 1305438, upload-time = "2025-06-13T14:07:31.676Z" }, + { url = "https://files.pythonhosted.org/packages/ba/ee/26aa0f98665a22bc90ebe12dced1de5f3eaca05363b717f6fb229b3421b3/pyzmq-27.0.0-cp312-abi3-manylinux2014_i686.manylinux_2_17_i686.whl", hash = "sha256:cb0ac5179cba4b2f94f1aa208fbb77b62c4c9bf24dd446278b8b602cf85fcda3", size = 895095, upload-time = "2025-06-13T14:07:33.104Z" }, + { url = "https://files.pythonhosted.org/packages/cf/85/c57e7ab216ecd8aa4cc7e3b83b06cc4e9cf45c87b0afc095f10cd5ce87c1/pyzmq-27.0.0-cp312-abi3-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:53a48f0228eab6cbf69fde3aa3c03cbe04e50e623ef92ae395fce47ef8a76152", size = 651826, upload-time = "2025-06-13T14:07:34.831Z" }, + { url = "https://files.pythonhosted.org/packages/69/9a/9ea7e230feda9400fb0ae0d61d7d6ddda635e718d941c44eeab22a179d34/pyzmq-27.0.0-cp312-abi3-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:111db5f395e09f7e775f759d598f43cb815fc58e0147623c4816486e1a39dc22", size = 839750, upload-time = "2025-06-13T14:07:36.553Z" }, + { url = "https://files.pythonhosted.org/packages/08/66/4cebfbe71f3dfbd417011daca267539f62ed0fbc68105357b68bbb1a25b7/pyzmq-27.0.0-cp312-abi3-musllinux_1_2_aarch64.whl", hash = "sha256:c8878011653dcdc27cc2c57e04ff96f0471e797f5c19ac3d7813a245bcb24371", size = 1641357, upload-time = "2025-06-13T14:07:38.21Z" }, + { url = "https://files.pythonhosted.org/packages/ac/f6/b0f62578c08d2471c791287149cb8c2aaea414ae98c6e995c7dbe008adfb/pyzmq-27.0.0-cp312-abi3-musllinux_1_2_i686.whl", hash = "sha256:c0ed2c1f335ba55b5fdc964622254917d6b782311c50e138863eda409fbb3b6d", size = 2020281, upload-time = "2025-06-13T14:07:39.599Z" }, + { url = "https://files.pythonhosted.org/packages/37/b9/4f670b15c7498495da9159edc374ec09c88a86d9cd5a47d892f69df23450/pyzmq-27.0.0-cp312-abi3-musllinux_1_2_x86_64.whl", hash = "sha256:e918d70862d4cfd4b1c187310015646a14e1f5917922ab45b29f28f345eeb6be", size = 1877110, upload-time = "2025-06-13T14:07:41.027Z" }, + { url = "https://files.pythonhosted.org/packages/66/31/9dee25c226295b740609f0d46db2fe972b23b6f5cf786360980524a3ba92/pyzmq-27.0.0-cp312-abi3-win32.whl", hash = "sha256:88b4e43cab04c3c0f0d55df3b1eef62df2b629a1a369b5289a58f6fa8b07c4f4", size = 559297, upload-time = "2025-06-13T14:07:42.533Z" }, + { url = "https://files.pythonhosted.org/packages/9b/12/52da5509800f7ff2d287b2f2b4e636e7ea0f001181cba6964ff6c1537778/pyzmq-27.0.0-cp312-abi3-win_amd64.whl", hash = "sha256:dce4199bf5f648a902ce37e7b3afa286f305cd2ef7a8b6ec907470ccb6c8b371", size = 619203, upload-time = "2025-06-13T14:07:43.843Z" }, + { url = "https://files.pythonhosted.org/packages/93/6d/7f2e53b19d1edb1eb4f09ec7c3a1f945ca0aac272099eab757d15699202b/pyzmq-27.0.0-cp312-abi3-win_arm64.whl", hash = "sha256:56e46bbb85d52c1072b3f809cc1ce77251d560bc036d3a312b96db1afe76db2e", size = 551927, upload-time = "2025-06-13T14:07:45.51Z" }, + { url = "https://files.pythonhosted.org/packages/98/a6/92394373b8dbc1edc9d53c951e8d3989d518185174ee54492ec27711779d/pyzmq-27.0.0-pp311-pypy311_pp73-macosx_10_15_x86_64.whl", hash = "sha256:cd1dc59763effd1576f8368047c9c31468fce0af89d76b5067641137506792ae", size = 835948, upload-time = "2025-06-13T14:08:43.516Z" }, + { url = "https://files.pythonhosted.org/packages/56/f3/4dc38d75d9995bfc18773df3e41f2a2ca9b740b06f1a15dbf404077e7588/pyzmq-27.0.0-pp311-pypy311_pp73-manylinux2014_i686.manylinux_2_17_i686.whl", hash = "sha256:60e8cc82d968174650c1860d7b716366caab9973787a1c060cf8043130f7d0f7", size = 799874, upload-time = "2025-06-13T14:08:45.017Z" }, + { url = "https://files.pythonhosted.org/packages/ab/ba/64af397e0f421453dc68e31d5e0784d554bf39013a2de0872056e96e58af/pyzmq-27.0.0-pp311-pypy311_pp73-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:14fe7aaac86e4e93ea779a821967360c781d7ac5115b3f1a171ced77065a0174", size = 567400, upload-time = "2025-06-13T14:08:46.855Z" }, + { url = "https://files.pythonhosted.org/packages/63/87/ec956cbe98809270b59a22891d5758edae147a258e658bf3024a8254c855/pyzmq-27.0.0-pp311-pypy311_pp73-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:6ad0562d4e6abb785be3e4dd68599c41be821b521da38c402bc9ab2a8e7ebc7e", size = 747031, upload-time = "2025-06-13T14:08:48.419Z" }, + { url = "https://files.pythonhosted.org/packages/be/8a/4a3764a68abc02e2fbb0668d225b6fda5cd39586dd099cee8b2ed6ab0452/pyzmq-27.0.0-pp311-pypy311_pp73-win_amd64.whl", hash = "sha256:9df43a2459cd3a3563404c1456b2c4c69564daa7dbaf15724c09821a3329ce46", size = 544726, upload-time = "2025-06-13T14:08:49.903Z" }, +] + +[[package]] +name = "ray" +version = "2.35.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "aiosignal", marker = "sys_platform == 'linux'" }, + { name = "click", marker = "sys_platform == 'linux'" }, + { name = "filelock", marker = "sys_platform == 'linux'" }, + { name = "frozenlist", marker = "sys_platform == 'linux'" }, + { name = "jsonschema", marker = "sys_platform == 'linux'" }, + { name = "msgpack", marker = "sys_platform == 'linux'" }, + { name = "packaging", marker = "sys_platform == 'linux'" }, + { name = "protobuf", marker = "sys_platform == 'linux'" }, + { name = "pyyaml", marker = "sys_platform == 'linux'" }, + { name = "requests", marker = "sys_platform == 'linux'" }, +] +wheels = [ + { url = "https://files.pythonhosted.org/packages/37/73/baea0ea2b2aa6aca23cca5b6421d000191ce8b5b9042e4a5a090d8cb5a75/ray-2.35.0-cp311-cp311-macosx_10_15_x86_64.whl", hash = "sha256:e29754fac4b69a9cb0d089841af59ec6fb10b5d4a248b7c579d319ca2ed1c96f", size = 65478089, upload-time = "2024-08-27T22:09:43.986Z" }, + { url = "https://files.pythonhosted.org/packages/0c/05/ce8257376d942d3a95a2fc55eb04c7c7861f2718495a040170a6126a94be/ray-2.35.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:d7a606c8ca53c64fc496703e9fd15d1a1ffb50e6b457a33d3622be2f13fc30a5", size = 62927826, upload-time = "2024-08-27T22:09:50.961Z" }, + { url = "https://files.pythonhosted.org/packages/62/67/eac9540ccccd1be549ac7524f29b2888ff002e740c3cd5275fde1e05b483/ray-2.35.0-cp311-cp311-manylinux2014_aarch64.whl", hash = "sha256:ac561e20a62ce941b74d02a0b92b7765c6ba87cc22e24f34f64ded2c454ba64e", size = 64226278, upload-time = "2024-08-27T22:09:57.638Z" }, + { url = "https://files.pythonhosted.org/packages/cd/6a/0416f5f81be11502325623c7adae844d0c518f17cefb6ad0881c4c8a995d/ray-2.35.0-cp311-cp311-manylinux2014_x86_64.whl", hash = "sha256:587af570cbe5f6cedca854f15107740e63c67207bee900713cb2ee38f6ebf20f", size = 65109537, upload-time = "2024-08-27T22:10:05.948Z" }, + { url = "https://files.pythonhosted.org/packages/f5/a3/ce539983252539d676635f0e135e5bd5a80ed4fa79388114fa4b0243f098/ray-2.35.0-cp311-cp311-win_amd64.whl", hash = "sha256:8e406cce41679790146d4d2b1b0cb0b413ca35276e43b68ee796366169c1dbde", size = 24687586, upload-time = "2024-08-27T22:10:12.066Z" }, + { url = "https://files.pythonhosted.org/packages/69/a3/f1d3a2d4480e2d7f2b60b2bc97ee5584ca29f0ff9701a53483908880d855/ray-2.35.0-cp312-cp312-macosx_10_15_x86_64.whl", hash = "sha256:eb86355a3a0e794e2f1dbd5a84805dddfca64921ad0999b7fa5276e40d243692", size = 65462623, upload-time = "2024-08-27T22:10:18.356Z" }, + { url = "https://files.pythonhosted.org/packages/94/0d/5d8a8be5ecd4b220167a34bb888267b0399f642a8fa3f57d616e17753f6f/ray-2.35.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:7b746913268d5ea5e19bff0eb6bdc7e0538036892a8b57c08411787481195df2", size = 62911214, upload-time = "2024-08-27T22:10:25.027Z" }, + { url = "https://files.pythonhosted.org/packages/e4/d6/68e1f51c3edb3c8ef2fc4868a4444870912cd0d1d282b1f5fcfab2b482de/ray-2.35.0-cp312-cp312-manylinux2014_aarch64.whl", hash = "sha256:e2ccfd144180f03d38b02a81afdac2b437f27e46736bf2653a1f0e8d67ea56cd", size = 64244918, upload-time = "2024-08-27T22:10:31.52Z" }, + { url = "https://files.pythonhosted.org/packages/35/e7/d9b4706308d584027df8e64b0517ca0cecf268b9f2f2051fb487fc555e55/ray-2.35.0-cp312-cp312-manylinux2014_x86_64.whl", hash = "sha256:2ca1a0de41d4462fd764598a5981cf55fc955599f38f9a1ae10868e94c6dd80d", size = 65151010, upload-time = "2024-08-27T22:10:38.068Z" }, + { url = "https://files.pythonhosted.org/packages/50/0f/ab971561f1947e5b2fc38d890d8b81f09f383cdcc3b8e8e6292188fc3648/ray-2.35.0-cp312-cp312-win_amd64.whl", hash = "sha256:c5600f745bb0e4df840a5cd51e82b1acf517f73505df9869fe3e369966956129", size = 24682282, upload-time = "2024-08-27T22:10:44.073Z" }, +] + +[package.optional-dependencies] +data = [ + { name = "fsspec", marker = "sys_platform == 'linux'" }, + { name = "numpy", version = "1.24.4", source = { registry = "https://pypi.org/simple" }, marker = "(sys_platform == 'linux' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-trustyai') or (sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai')" }, + { name = "numpy", version = "1.26.4", source = { registry = "https://pypi.org/simple" }, marker = "(sys_platform == 'linux' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (sys_platform == 'linux' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-tensorflow') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai')" }, + { name = "numpy", version = "2.2.6", source = { registry = "https://pypi.org/simple" }, marker = "(sys_platform == 'linux' and extra == 'group-9-notebooks-jupyter-datascience-image') or (sys_platform == 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (sys_platform == 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred') or (sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred') or (sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchcuda') or (sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchrocm') or (sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai')" }, + { name = "pandas", version = "1.5.3", source = { registry = "https://pypi.org/simple" }, marker = "(sys_platform == 'linux' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-trustyai') or (sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai')" }, + { name = "pandas", version = "2.2.3", source = { registry = "https://pypi.org/simple" }, marker = "(sys_platform == 'linux' and extra == 'group-9-notebooks-jupyter-datascience-image') or (sys_platform == 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (sys_platform == 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (sys_platform == 'linux' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (sys_platform == 'linux' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred') or (sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-tensorflow') or (sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred') or (sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchcuda') or (sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchrocm') or (sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai')" }, + { name = "pyarrow", marker = "sys_platform == 'linux'" }, +] +default = [ + { name = "aiohttp", marker = "sys_platform == 'linux'" }, + { name = "aiohttp-cors", marker = "sys_platform == 'linux'" }, + { name = "colorful", marker = "sys_platform == 'linux'" }, + { name = "grpcio", marker = "sys_platform == 'linux'" }, + { name = "memray", marker = "sys_platform == 'linux'" }, + { name = "opencensus", marker = "sys_platform == 'linux'" }, + { name = "prometheus-client", marker = "sys_platform == 'linux'" }, + { name = "py-spy", marker = "sys_platform == 'linux'" }, + { name = "pydantic", version = "1.10.22", source = { registry = "https://pypi.org/simple" }, marker = "sys_platform == 'linux'" }, + { name = "requests", marker = "sys_platform == 'linux'" }, + { name = "smart-open", marker = "sys_platform == 'linux'" }, + { name = "virtualenv", marker = "sys_platform == 'linux'" }, +] + +[[package]] +name = "referencing" +version = "0.36.2" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "attrs", marker = "sys_platform == 'linux'" }, + { name = "rpds-py", marker = "sys_platform == 'linux'" }, + { name = "typing-extensions", marker = "sys_platform == 'linux'" }, +] +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 = [ + { url = "https://files.pythonhosted.org/packages/c1/b1/3baf80dc6d2b7bc27a95a67752d0208e410351e3feb4eb78de5f77454d8d/referencing-0.36.2-py3-none-any.whl", hash = "sha256:e8699adbbf8b5c7de96d8ffa0eb5c158b3beafce084968e2ea8bb08c6794dcd0", size = 26775, upload-time = "2025-01-25T08:48:14.241Z" }, +] + +[[package]] +name = "regex" +version = "2024.11.6" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/8e/5f/bd69653fbfb76cf8604468d3b4ec4c403197144c7bfe0e6a5fc9e02a07cb/regex-2024.11.6.tar.gz", hash = "sha256:7ab159b063c52a0333c884e4679f8d7a85112ee3078fe3d9004b2dd875585519", size = 399494, upload-time = "2024-11-06T20:12:31.635Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/58/58/7e4d9493a66c88a7da6d205768119f51af0f684fe7be7bac8328e217a52c/regex-2024.11.6-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:5478c6962ad548b54a591778e93cd7c456a7a29f8eca9c49e4f9a806dcc5d638", size = 482669, upload-time = "2024-11-06T20:09:31.064Z" }, + { url = "https://files.pythonhosted.org/packages/34/4c/8f8e631fcdc2ff978609eaeef1d6994bf2f028b59d9ac67640ed051f1218/regex-2024.11.6-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:2c89a8cc122b25ce6945f0423dc1352cb9593c68abd19223eebbd4e56612c5b7", size = 287684, upload-time = "2024-11-06T20:09:32.915Z" }, + { url = "https://files.pythonhosted.org/packages/c5/1b/f0e4d13e6adf866ce9b069e191f303a30ab1277e037037a365c3aad5cc9c/regex-2024.11.6-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:94d87b689cdd831934fa3ce16cc15cd65748e6d689f5d2b8f4f4df2065c9fa20", size = 284589, upload-time = "2024-11-06T20:09:35.504Z" }, + { url = "https://files.pythonhosted.org/packages/25/4d/ab21047f446693887f25510887e6820b93f791992994f6498b0318904d4a/regex-2024.11.6-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1062b39a0a2b75a9c694f7a08e7183a80c63c0d62b301418ffd9c35f55aaa114", size = 792121, upload-time = "2024-11-06T20:09:37.701Z" }, + { url = "https://files.pythonhosted.org/packages/45/ee/c867e15cd894985cb32b731d89576c41a4642a57850c162490ea34b78c3b/regex-2024.11.6-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:167ed4852351d8a750da48712c3930b031f6efdaa0f22fa1933716bfcd6bf4a3", size = 831275, upload-time = "2024-11-06T20:09:40.371Z" }, + { url = "https://files.pythonhosted.org/packages/b3/12/b0f480726cf1c60f6536fa5e1c95275a77624f3ac8fdccf79e6727499e28/regex-2024.11.6-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:2d548dafee61f06ebdb584080621f3e0c23fff312f0de1afc776e2a2ba99a74f", size = 818257, upload-time = "2024-11-06T20:09:43.059Z" }, + { url = "https://files.pythonhosted.org/packages/bf/ce/0d0e61429f603bac433910d99ef1a02ce45a8967ffbe3cbee48599e62d88/regex-2024.11.6-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f2a19f302cd1ce5dd01a9099aaa19cae6173306d1302a43b627f62e21cf18ac0", size = 792727, upload-time = "2024-11-06T20:09:48.19Z" }, + { url = "https://files.pythonhosted.org/packages/e4/c1/243c83c53d4a419c1556f43777ccb552bccdf79d08fda3980e4e77dd9137/regex-2024.11.6-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:bec9931dfb61ddd8ef2ebc05646293812cb6b16b60cf7c9511a832b6f1854b55", size = 780667, upload-time = "2024-11-06T20:09:49.828Z" }, + { url = "https://files.pythonhosted.org/packages/c5/f4/75eb0dd4ce4b37f04928987f1d22547ddaf6c4bae697623c1b05da67a8aa/regex-2024.11.6-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:9714398225f299aa85267fd222f7142fcb5c769e73d7733344efc46f2ef5cf89", size = 776963, upload-time = "2024-11-06T20:09:51.819Z" }, + { url = "https://files.pythonhosted.org/packages/16/5d/95c568574e630e141a69ff8a254c2f188b4398e813c40d49228c9bbd9875/regex-2024.11.6-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:202eb32e89f60fc147a41e55cb086db2a3f8cb82f9a9a88440dcfc5d37faae8d", size = 784700, upload-time = "2024-11-06T20:09:53.982Z" }, + { url = "https://files.pythonhosted.org/packages/8e/b5/f8495c7917f15cc6fee1e7f395e324ec3e00ab3c665a7dc9d27562fd5290/regex-2024.11.6-cp311-cp311-musllinux_1_2_ppc64le.whl", hash = "sha256:4181b814e56078e9b00427ca358ec44333765f5ca1b45597ec7446d3a1ef6e34", size = 848592, upload-time = "2024-11-06T20:09:56.222Z" }, + { url = "https://files.pythonhosted.org/packages/1c/80/6dd7118e8cb212c3c60b191b932dc57db93fb2e36fb9e0e92f72a5909af9/regex-2024.11.6-cp311-cp311-musllinux_1_2_s390x.whl", hash = "sha256:068376da5a7e4da51968ce4c122a7cd31afaaec4fccc7856c92f63876e57b51d", size = 852929, upload-time = "2024-11-06T20:09:58.642Z" }, + { url = "https://files.pythonhosted.org/packages/11/9b/5a05d2040297d2d254baf95eeeb6df83554e5e1df03bc1a6687fc4ba1f66/regex-2024.11.6-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:ac10f2c4184420d881a3475fb2c6f4d95d53a8d50209a2500723d831036f7c45", size = 781213, upload-time = "2024-11-06T20:10:00.867Z" }, + { url = "https://files.pythonhosted.org/packages/26/b7/b14e2440156ab39e0177506c08c18accaf2b8932e39fb092074de733d868/regex-2024.11.6-cp311-cp311-win32.whl", hash = "sha256:c36f9b6f5f8649bb251a5f3f66564438977b7ef8386a52460ae77e6070d309d9", size = 261734, upload-time = "2024-11-06T20:10:03.361Z" }, + { url = "https://files.pythonhosted.org/packages/80/32/763a6cc01d21fb3819227a1cc3f60fd251c13c37c27a73b8ff4315433a8e/regex-2024.11.6-cp311-cp311-win_amd64.whl", hash = "sha256:02e28184be537f0e75c1f9b2f8847dc51e08e6e171c6bde130b2687e0c33cf60", size = 274052, upload-time = "2024-11-06T20:10:05.179Z" }, + { url = "https://files.pythonhosted.org/packages/ba/30/9a87ce8336b172cc232a0db89a3af97929d06c11ceaa19d97d84fa90a8f8/regex-2024.11.6-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:52fb28f528778f184f870b7cf8f225f5eef0a8f6e3778529bdd40c7b3920796a", size = 483781, upload-time = "2024-11-06T20:10:07.07Z" }, + { url = "https://files.pythonhosted.org/packages/01/e8/00008ad4ff4be8b1844786ba6636035f7ef926db5686e4c0f98093612add/regex-2024.11.6-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:fdd6028445d2460f33136c55eeb1f601ab06d74cb3347132e1c24250187500d9", size = 288455, upload-time = "2024-11-06T20:10:09.117Z" }, + { url = "https://files.pythonhosted.org/packages/60/85/cebcc0aff603ea0a201667b203f13ba75d9fc8668fab917ac5b2de3967bc/regex-2024.11.6-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:805e6b60c54bf766b251e94526ebad60b7de0c70f70a4e6210ee2891acb70bf2", size = 284759, upload-time = "2024-11-06T20:10:11.155Z" }, + { url = "https://files.pythonhosted.org/packages/94/2b/701a4b0585cb05472a4da28ee28fdfe155f3638f5e1ec92306d924e5faf0/regex-2024.11.6-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b85c2530be953a890eaffde05485238f07029600e8f098cdf1848d414a8b45e4", size = 794976, upload-time = "2024-11-06T20:10:13.24Z" }, + { url = "https://files.pythonhosted.org/packages/4b/bf/fa87e563bf5fee75db8915f7352e1887b1249126a1be4813837f5dbec965/regex-2024.11.6-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:bb26437975da7dc36b7efad18aa9dd4ea569d2357ae6b783bf1118dabd9ea577", size = 833077, upload-time = "2024-11-06T20:10:15.37Z" }, + { url = "https://files.pythonhosted.org/packages/a1/56/7295e6bad94b047f4d0834e4779491b81216583c00c288252ef625c01d23/regex-2024.11.6-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:abfa5080c374a76a251ba60683242bc17eeb2c9818d0d30117b4486be10c59d3", size = 823160, upload-time = "2024-11-06T20:10:19.027Z" }, + { url = "https://files.pythonhosted.org/packages/fb/13/e3b075031a738c9598c51cfbc4c7879e26729c53aa9cca59211c44235314/regex-2024.11.6-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:70b7fa6606c2881c1db9479b0eaa11ed5dfa11c8d60a474ff0e095099f39d98e", size = 796896, upload-time = "2024-11-06T20:10:21.85Z" }, + { url = "https://files.pythonhosted.org/packages/24/56/0b3f1b66d592be6efec23a795b37732682520b47c53da5a32c33ed7d84e3/regex-2024.11.6-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:0c32f75920cf99fe6b6c539c399a4a128452eaf1af27f39bce8909c9a3fd8cbe", size = 783997, upload-time = "2024-11-06T20:10:24.329Z" }, + { url = "https://files.pythonhosted.org/packages/f9/a1/eb378dada8b91c0e4c5f08ffb56f25fcae47bf52ad18f9b2f33b83e6d498/regex-2024.11.6-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:982e6d21414e78e1f51cf595d7f321dcd14de1f2881c5dc6a6e23bbbbd68435e", size = 781725, upload-time = "2024-11-06T20:10:28.067Z" }, + { url = "https://files.pythonhosted.org/packages/83/f2/033e7dec0cfd6dda93390089864732a3409246ffe8b042e9554afa9bff4e/regex-2024.11.6-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:a7c2155f790e2fb448faed6dd241386719802296ec588a8b9051c1f5c481bc29", size = 789481, upload-time = "2024-11-06T20:10:31.612Z" }, + { url = "https://files.pythonhosted.org/packages/83/23/15d4552ea28990a74e7696780c438aadd73a20318c47e527b47a4a5a596d/regex-2024.11.6-cp312-cp312-musllinux_1_2_ppc64le.whl", hash = "sha256:149f5008d286636e48cd0b1dd65018548944e495b0265b45e1bffecce1ef7f39", size = 852896, upload-time = "2024-11-06T20:10:34.054Z" }, + { url = "https://files.pythonhosted.org/packages/e3/39/ed4416bc90deedbfdada2568b2cb0bc1fdb98efe11f5378d9892b2a88f8f/regex-2024.11.6-cp312-cp312-musllinux_1_2_s390x.whl", hash = "sha256:e5364a4502efca094731680e80009632ad6624084aff9a23ce8c8c6820de3e51", size = 860138, upload-time = "2024-11-06T20:10:36.142Z" }, + { url = "https://files.pythonhosted.org/packages/93/2d/dd56bb76bd8e95bbce684326302f287455b56242a4f9c61f1bc76e28360e/regex-2024.11.6-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:0a86e7eeca091c09e021db8eb72d54751e527fa47b8d5787caf96d9831bd02ad", size = 787692, upload-time = "2024-11-06T20:10:38.394Z" }, + { url = "https://files.pythonhosted.org/packages/0b/55/31877a249ab7a5156758246b9c59539abbeba22461b7d8adc9e8475ff73e/regex-2024.11.6-cp312-cp312-win32.whl", hash = "sha256:32f9a4c643baad4efa81d549c2aadefaeba12249b2adc5af541759237eee1c54", size = 262135, upload-time = "2024-11-06T20:10:40.367Z" }, + { url = "https://files.pythonhosted.org/packages/38/ec/ad2d7de49a600cdb8dd78434a1aeffe28b9d6fc42eb36afab4a27ad23384/regex-2024.11.6-cp312-cp312-win_amd64.whl", hash = "sha256:a93c194e2df18f7d264092dc8539b8ffb86b45b899ab976aa15d48214138e81b", size = 273567, upload-time = "2024-11-06T20:10:43.467Z" }, +] + +[[package]] +name = "requests" +version = "2.32.3" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "certifi", marker = "sys_platform == 'linux'" }, + { name = "charset-normalizer", marker = "sys_platform == 'linux'" }, + { name = "idna", marker = "sys_platform == 'linux'" }, + { name = "urllib3", marker = "sys_platform == 'linux'" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/63/70/2bf7780ad2d390a8d301ad0b550f1581eadbd9a20f896afe06353c2a2913/requests-2.32.3.tar.gz", hash = "sha256:55365417734eb18255590a9ff9eb97e9e1da868d4ccd6402399eaf68af20a760", size = 131218, upload-time = "2024-05-29T15:37:49.536Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/f9/9b/335f9764261e915ed497fcdeb11df5dfd6f7bf257d4a6a2a686d80da4d54/requests-2.32.3-py3-none-any.whl", hash = "sha256:70761cfe03c773ceb22aa2f671b4757976145175cdfca038c02654d061d6dcc6", size = 64928, upload-time = "2024-05-29T15:37:47.027Z" }, +] + +[[package]] +name = "requests-oauthlib" +version = "2.0.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "oauthlib", marker = "sys_platform == 'linux'" }, + { name = "requests", marker = "sys_platform == 'linux'" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/42/f2/05f29bc3913aea15eb670be136045bf5c5bbf4b99ecb839da9b422bb2c85/requests-oauthlib-2.0.0.tar.gz", hash = "sha256:b3dffaebd884d8cd778494369603a9e7b58d29111bf6b41bdc2dcd87203af4e9", size = 55650, upload-time = "2024-03-22T20:32:29.939Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/3b/5d/63d4ae3b9daea098d5d6f5da83984853c1bbacd5dc826764b249fe119d24/requests_oauthlib-2.0.0-py2.py3-none-any.whl", hash = "sha256:7dd8a5c40426b779b0868c404bdef9768deccf22749cde15852df527e6269b36", size = 24179, upload-time = "2024-03-22T20:32:28.055Z" }, +] + +[[package]] +name = "requests-toolbelt" +version = "1.0.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "requests", marker = "sys_platform == 'linux'" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/f3/61/d7545dafb7ac2230c70d38d31cbfe4cc64f7144dc41f6e4e4b78ecd9f5bb/requests-toolbelt-1.0.0.tar.gz", hash = "sha256:7681a0a3d047012b5bdc0ee37d7f8f07ebe76ab08caeccfc3921ce23c88d5bc6", size = 206888, upload-time = "2023-05-01T04:11:33.229Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/3f/51/d4db610ef29373b879047326cbf6fa98b6c1969d6f6dc423279de2b1be2c/requests_toolbelt-1.0.0-py2.py3-none-any.whl", hash = "sha256:cccfdd665f0a24fcf4726e690f65639d272bb0637b9b92dfd91a5568ccf6bd06", size = 54481, upload-time = "2023-05-01T04:11:28.427Z" }, +] + +[[package]] +name = "retrying" +version = "1.4.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/4e/e5/986cabb44cc073a8bf50c3d8d4c85514c6741fff78ebf853a0ebcd441a97/retrying-1.4.0.tar.gz", hash = "sha256:efa99c78bf4fbdbe6f0cba4101470fbc684b93d30ca45ffa1288443a9805172f", size = 11202, upload-time = "2025-06-24T10:08:59.091Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/96/7e/5a83e2c56761d347128e58b3f23af829fd145bfb1afeff18927bc5915459/retrying-1.4.0-py3-none-any.whl", hash = "sha256:6509d829c70271937605bce361c8f76e91f9123d355d14df7dc6972b1518064a", size = 11972, upload-time = "2025-06-24T10:08:57.794Z" }, +] + +[[package]] +name = "rfc3339-validator" +version = "0.1.4" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "six", marker = "sys_platform == 'linux'" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/28/ea/a9387748e2d111c3c2b275ba970b735e04e15cdb1eb30693b6b5708c4dbd/rfc3339_validator-0.1.4.tar.gz", hash = "sha256:138a2abdf93304ad60530167e51d2dfb9549521a836871b88d7f4695d0022f6b", size = 5513, upload-time = "2021-05-12T16:37:54.178Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/7b/44/4e421b96b67b2daff264473f7465db72fbdf36a07e05494f50300cc7b0c6/rfc3339_validator-0.1.4-py2.py3-none-any.whl", hash = "sha256:24f6ec1eda14ef823da9e36ec7113124b39c04d50a4d3d3a3c2859577e7791fa", size = 3490, upload-time = "2021-05-12T16:37:52.536Z" }, +] + +[[package]] +name = "rfc3986-validator" +version = "0.1.1" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/da/88/f270de456dd7d11dcc808abfa291ecdd3f45ff44e3b549ffa01b126464d0/rfc3986_validator-0.1.1.tar.gz", hash = "sha256:3d44bde7921b3b9ec3ae4e3adca370438eccebc676456449b145d533b240d055", size = 6760, upload-time = "2019-10-28T16:00:19.144Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/9e/51/17023c0f8f1869d8806b979a2bffa3f861f26a3f1a66b094288323fba52f/rfc3986_validator-0.1.1-py2.py3-none-any.whl", hash = "sha256:2f235c432ef459970b4306369336b9d5dbdda31b510ca1e327636e01f528bfa9", size = 4242, upload-time = "2019-10-28T16:00:13.976Z" }, +] + +[[package]] +name = "rich" +version = "13.9.4" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "markdown-it-py", marker = "sys_platform == 'linux'" }, + { name = "pygments", marker = "sys_platform == 'linux'" }, +] +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 = [ + { url = "https://files.pythonhosted.org/packages/19/71/39c7c0d87f8d4e6c020a393182060eaefeeae6c01dab6a84ec346f2567df/rich-13.9.4-py3-none-any.whl", hash = "sha256:6049d5e6ec054bf2779ab3358186963bac2ea89175919d699e378b99738c2a90", size = 242424, upload-time = "2024-11-01T16:43:55.817Z" }, +] + +[[package]] +name = "rope" +version = "1.13.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "pytoolconfig", extra = ["global"], marker = "sys_platform == 'linux' or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai')" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/1c/c1/875e0270ac39b764fcb16c2dfece14a42747dbd0f181ac3864bff3126af1/rope-1.13.0.tar.gz", hash = "sha256:51437d2decc8806cd5e9dd1fd9c1306a6d9075ecaf78d191af85fc1dfface880", size = 294457, upload-time = "2024-03-24T15:00:09.241Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/a0/d0/e213e5adfa162e437dff3669131dc476043fc3a22fe99ef891516100610d/rope-1.13.0-py3-none-any.whl", hash = "sha256:b435a0c0971244fdcd8741676a9fae697ae614c20cc36003678a7782f25c0d6c", size = 206474, upload-time = "2024-03-24T15:00:05.53Z" }, +] + +[[package]] +name = "rpds-py" +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/95/e1/df13fe3ddbbea43567e07437f097863b20c99318ae1f58a0fe389f763738/rpds_py-0.25.1-cp311-cp311-macosx_10_12_x86_64.whl", hash = "sha256:5f048bbf18b1f9120685c6d6bb70cc1a52c8cc11bdd04e643d28d3be0baf666d", size = 373341, upload-time = "2025-05-21T12:43:02.978Z" }, + { url = "https://files.pythonhosted.org/packages/7a/58/deef4d30fcbcbfef3b6d82d17c64490d5c94585a2310544ce8e2d3024f83/rpds_py-0.25.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:4fbb0dbba559959fcb5d0735a0f87cdbca9e95dac87982e9b95c0f8f7ad10255", size = 359111, upload-time = "2025-05-21T12:43:05.128Z" }, + { url = "https://files.pythonhosted.org/packages/bb/7e/39f1f4431b03e96ebaf159e29a0f82a77259d8f38b2dd474721eb3a8ac9b/rpds_py-0.25.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d4ca54b9cf9d80b4016a67a0193ebe0bcf29f6b0a96f09db942087e294d3d4c2", size = 386112, upload-time = "2025-05-21T12:43:07.13Z" }, + { url = "https://files.pythonhosted.org/packages/db/e7/847068a48d63aec2ae695a1646089620b3b03f8ccf9f02c122ebaf778f3c/rpds_py-0.25.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:1ee3e26eb83d39b886d2cb6e06ea701bba82ef30a0de044d34626ede51ec98b0", size = 400362, upload-time = "2025-05-21T12:43:08.693Z" }, + { url = "https://files.pythonhosted.org/packages/3b/3d/9441d5db4343d0cee759a7ab4d67420a476cebb032081763de934719727b/rpds_py-0.25.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:89706d0683c73a26f76a5315d893c051324d771196ae8b13e6ffa1ffaf5e574f", size = 522214, upload-time = "2025-05-21T12:43:10.694Z" }, + { url = "https://files.pythonhosted.org/packages/a2/ec/2cc5b30d95f9f1a432c79c7a2f65d85e52812a8f6cbf8768724571710786/rpds_py-0.25.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:c2013ee878c76269c7b557a9a9c042335d732e89d482606990b70a839635feb7", size = 411491, upload-time = "2025-05-21T12:43:12.739Z" }, + { url = "https://files.pythonhosted.org/packages/dc/6c/44695c1f035077a017dd472b6a3253553780837af2fac9b6ac25f6a5cb4d/rpds_py-0.25.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:45e484db65e5380804afbec784522de84fa95e6bb92ef1bd3325d33d13efaebd", size = 386978, upload-time = "2025-05-21T12:43:14.25Z" }, + { url = "https://files.pythonhosted.org/packages/b1/74/b4357090bb1096db5392157b4e7ed8bb2417dc7799200fcbaee633a032c9/rpds_py-0.25.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:48d64155d02127c249695abb87d39f0faf410733428d499867606be138161d65", size = 420662, upload-time = "2025-05-21T12:43:15.8Z" }, + { url = "https://files.pythonhosted.org/packages/26/dd/8cadbebf47b96e59dfe8b35868e5c38a42272699324e95ed522da09d3a40/rpds_py-0.25.1-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:048893e902132fd6548a2e661fb38bf4896a89eea95ac5816cf443524a85556f", size = 563385, upload-time = "2025-05-21T12:43:17.78Z" }, + { url = "https://files.pythonhosted.org/packages/c3/ea/92960bb7f0e7a57a5ab233662f12152085c7dc0d5468534c65991a3d48c9/rpds_py-0.25.1-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:0317177b1e8691ab5879f4f33f4b6dc55ad3b344399e23df2e499de7b10a548d", size = 592047, upload-time = "2025-05-21T12:43:19.457Z" }, + { url = "https://files.pythonhosted.org/packages/61/ad/71aabc93df0d05dabcb4b0c749277881f8e74548582d96aa1bf24379493a/rpds_py-0.25.1-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:bffcf57826d77a4151962bf1701374e0fc87f536e56ec46f1abdd6a903354042", size = 557863, upload-time = "2025-05-21T12:43:21.69Z" }, + { url = "https://files.pythonhosted.org/packages/93/0f/89df0067c41f122b90b76f3660028a466eb287cbe38efec3ea70e637ca78/rpds_py-0.25.1-cp311-cp311-win32.whl", hash = "sha256:cda776f1967cb304816173b30994faaf2fd5bcb37e73118a47964a02c348e1bc", size = 219627, upload-time = "2025-05-21T12:43:23.311Z" }, + { url = "https://files.pythonhosted.org/packages/7c/8d/93b1a4c1baa903d0229374d9e7aa3466d751f1d65e268c52e6039c6e338e/rpds_py-0.25.1-cp311-cp311-win_amd64.whl", hash = "sha256:dc3c1ff0abc91444cd20ec643d0f805df9a3661fcacf9c95000329f3ddf268a4", size = 231603, upload-time = "2025-05-21T12:43:25.145Z" }, + { url = "https://files.pythonhosted.org/packages/cb/11/392605e5247bead2f23e6888e77229fbd714ac241ebbebb39a1e822c8815/rpds_py-0.25.1-cp311-cp311-win_arm64.whl", hash = "sha256:5a3ddb74b0985c4387719fc536faced33cadf2172769540c62e2a94b7b9be1c4", size = 223967, upload-time = "2025-05-21T12:43:26.566Z" }, + { url = "https://files.pythonhosted.org/packages/7f/81/28ab0408391b1dc57393653b6a0cf2014cc282cc2909e4615e63e58262be/rpds_py-0.25.1-cp312-cp312-macosx_10_12_x86_64.whl", hash = "sha256:b5ffe453cde61f73fea9430223c81d29e2fbf412a6073951102146c84e19e34c", size = 364647, upload-time = "2025-05-21T12:43:28.559Z" }, + { url = "https://files.pythonhosted.org/packages/2c/9a/7797f04cad0d5e56310e1238434f71fc6939d0bc517192a18bb99a72a95f/rpds_py-0.25.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:115874ae5e2fdcfc16b2aedc95b5eef4aebe91b28e7e21951eda8a5dc0d3461b", size = 350454, upload-time = "2025-05-21T12:43:30.615Z" }, + { url = "https://files.pythonhosted.org/packages/69/3c/93d2ef941b04898011e5d6eaa56a1acf46a3b4c9f4b3ad1bbcbafa0bee1f/rpds_py-0.25.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a714bf6e5e81b0e570d01f56e0c89c6375101b8463999ead3a93a5d2a4af91fa", size = 389665, upload-time = "2025-05-21T12:43:32.629Z" }, + { url = "https://files.pythonhosted.org/packages/c1/57/ad0e31e928751dde8903a11102559628d24173428a0f85e25e187defb2c1/rpds_py-0.25.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:35634369325906bcd01577da4c19e3b9541a15e99f31e91a02d010816b49bfda", size = 403873, upload-time = "2025-05-21T12:43:34.576Z" }, + { url = "https://files.pythonhosted.org/packages/16/ad/c0c652fa9bba778b4f54980a02962748479dc09632e1fd34e5282cf2556c/rpds_py-0.25.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:d4cb2b3ddc16710548801c6fcc0cfcdeeff9dafbc983f77265877793f2660309", size = 525866, upload-time = "2025-05-21T12:43:36.123Z" }, + { url = "https://files.pythonhosted.org/packages/2a/39/3e1839bc527e6fcf48d5fec4770070f872cdee6c6fbc9b259932f4e88a38/rpds_py-0.25.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:9ceca1cf097ed77e1a51f1dbc8d174d10cb5931c188a4505ff9f3e119dfe519b", size = 416886, upload-time = "2025-05-21T12:43:38.034Z" }, + { url = "https://files.pythonhosted.org/packages/7a/95/dd6b91cd4560da41df9d7030a038298a67d24f8ca38e150562644c829c48/rpds_py-0.25.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:2c2cd1a4b0c2b8c5e31ffff50d09f39906fe351389ba143c195566056c13a7ea", size = 390666, upload-time = "2025-05-21T12:43:40.065Z" }, + { url = "https://files.pythonhosted.org/packages/64/48/1be88a820e7494ce0a15c2d390ccb7c52212370badabf128e6a7bb4cb802/rpds_py-0.25.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:1de336a4b164c9188cb23f3703adb74a7623ab32d20090d0e9bf499a2203ad65", size = 425109, upload-time = "2025-05-21T12:43:42.263Z" }, + { url = "https://files.pythonhosted.org/packages/cf/07/3e2a17927ef6d7720b9949ec1b37d1e963b829ad0387f7af18d923d5cfa5/rpds_py-0.25.1-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:9fca84a15333e925dd59ce01da0ffe2ffe0d6e5d29a9eeba2148916d1824948c", size = 567244, upload-time = "2025-05-21T12:43:43.846Z" }, + { url = "https://files.pythonhosted.org/packages/d2/e5/76cf010998deccc4f95305d827847e2eae9c568099c06b405cf96384762b/rpds_py-0.25.1-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:88ec04afe0c59fa64e2f6ea0dd9657e04fc83e38de90f6de201954b4d4eb59bd", size = 596023, upload-time = "2025-05-21T12:43:45.932Z" }, + { url = "https://files.pythonhosted.org/packages/52/9a/df55efd84403736ba37a5a6377b70aad0fd1cb469a9109ee8a1e21299a1c/rpds_py-0.25.1-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:a8bd2f19e312ce3e1d2c635618e8a8d8132892bb746a7cf74780a489f0f6cdcb", size = 561634, upload-time = "2025-05-21T12:43:48.263Z" }, + { url = "https://files.pythonhosted.org/packages/ab/aa/dc3620dd8db84454aaf9374bd318f1aa02578bba5e567f5bf6b79492aca4/rpds_py-0.25.1-cp312-cp312-win32.whl", hash = "sha256:e5e2f7280d8d0d3ef06f3ec1b4fd598d386cc6f0721e54f09109a8132182fbfe", size = 222713, upload-time = "2025-05-21T12:43:49.897Z" }, + { url = "https://files.pythonhosted.org/packages/a3/7f/7cef485269a50ed5b4e9bae145f512d2a111ca638ae70cc101f661b4defd/rpds_py-0.25.1-cp312-cp312-win_amd64.whl", hash = "sha256:db58483f71c5db67d643857404da360dce3573031586034b7d59f245144cc192", size = 235280, upload-time = "2025-05-21T12:43:51.893Z" }, + { url = "https://files.pythonhosted.org/packages/99/f2/c2d64f6564f32af913bf5f3f7ae41c7c263c5ae4c4e8f1a17af8af66cd46/rpds_py-0.25.1-cp312-cp312-win_arm64.whl", hash = "sha256:6d50841c425d16faf3206ddbba44c21aa3310a0cebc3c1cdfc3e3f4f9f6f5728", size = 225399, upload-time = "2025-05-21T12:43:53.351Z" }, + { url = "https://files.pythonhosted.org/packages/49/74/48f3df0715a585cbf5d34919c9c757a4c92c1a9eba059f2d334e72471f70/rpds_py-0.25.1-pp311-pypy311_pp73-macosx_10_12_x86_64.whl", hash = "sha256:ee86d81551ec68a5c25373c5643d343150cc54672b5e9a0cafc93c1870a53954", size = 374208, upload-time = "2025-05-21T12:45:26.306Z" }, + { url = "https://files.pythonhosted.org/packages/55/b0/9b01bb11ce01ec03d05e627249cc2c06039d6aa24ea5a22a39c312167c10/rpds_py-0.25.1-pp311-pypy311_pp73-macosx_11_0_arm64.whl", hash = "sha256:89c24300cd4a8e4a51e55c31a8ff3918e6651b241ee8876a42cc2b2a078533ba", size = 359262, upload-time = "2025-05-21T12:45:28.322Z" }, + { url = "https://files.pythonhosted.org/packages/a9/eb/5395621618f723ebd5116c53282052943a726dba111b49cd2071f785b665/rpds_py-0.25.1-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:771c16060ff4e79584dc48902a91ba79fd93eade3aa3a12d6d2a4aadaf7d542b", size = 387366, upload-time = "2025-05-21T12:45:30.42Z" }, + { url = "https://files.pythonhosted.org/packages/68/73/3d51442bdb246db619d75039a50ea1cf8b5b4ee250c3e5cd5c3af5981cd4/rpds_py-0.25.1-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:785ffacd0ee61c3e60bdfde93baa6d7c10d86f15655bd706c89da08068dc5038", size = 400759, upload-time = "2025-05-21T12:45:32.516Z" }, + { url = "https://files.pythonhosted.org/packages/b7/4c/3a32d5955d7e6cb117314597bc0f2224efc798428318b13073efe306512a/rpds_py-0.25.1-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:2a40046a529cc15cef88ac5ab589f83f739e2d332cb4d7399072242400ed68c9", size = 523128, upload-time = "2025-05-21T12:45:34.396Z" }, + { url = "https://files.pythonhosted.org/packages/be/95/1ffccd3b0bb901ae60b1dd4b1be2ab98bb4eb834cd9b15199888f5702f7b/rpds_py-0.25.1-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:85fc223d9c76cabe5d0bff82214459189720dc135db45f9f66aa7cffbf9ff6c1", size = 411597, upload-time = "2025-05-21T12:45:36.164Z" }, + { url = "https://files.pythonhosted.org/packages/ef/6d/6e6cd310180689db8b0d2de7f7d1eabf3fb013f239e156ae0d5a1a85c27f/rpds_py-0.25.1-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b0be9965f93c222fb9b4cc254235b3b2b215796c03ef5ee64f995b1b69af0762", size = 388053, upload-time = "2025-05-21T12:45:38.45Z" }, + { url = "https://files.pythonhosted.org/packages/4a/87/ec4186b1fe6365ced6fa470960e68fc7804bafbe7c0cf5a36237aa240efa/rpds_py-0.25.1-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:8378fa4a940f3fb509c081e06cb7f7f2adae8cf46ef258b0e0ed7519facd573e", size = 421821, upload-time = "2025-05-21T12:45:40.732Z" }, + { url = "https://files.pythonhosted.org/packages/7a/60/84f821f6bf4e0e710acc5039d91f8f594fae0d93fc368704920d8971680d/rpds_py-0.25.1-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl", hash = "sha256:33358883a4490287e67a2c391dfaea4d9359860281db3292b6886bf0be3d8692", size = 564534, upload-time = "2025-05-21T12:45:42.672Z" }, + { url = "https://files.pythonhosted.org/packages/41/3a/bc654eb15d3b38f9330fe0f545016ba154d89cdabc6177b0295910cd0ebe/rpds_py-0.25.1-pp311-pypy311_pp73-musllinux_1_2_i686.whl", hash = "sha256:1d1fadd539298e70cac2f2cb36f5b8a65f742b9b9f1014dd4ea1f7785e2470bf", size = 592674, upload-time = "2025-05-21T12:45:44.533Z" }, + { url = "https://files.pythonhosted.org/packages/2e/ba/31239736f29e4dfc7a58a45955c5db852864c306131fd6320aea214d5437/rpds_py-0.25.1-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl", hash = "sha256:9a46c2fb2545e21181445515960006e85d22025bd2fe6db23e76daec6eb689fe", size = 558781, upload-time = "2025-05-21T12:45:46.281Z" }, +] + +[[package]] +name = "rsa" +version = "4.9" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "pyasn1", marker = "sys_platform == 'linux'" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/aa/65/7d973b89c4d2351d7fb232c2e452547ddfa243e93131e7cfa766da627b52/rsa-4.9.tar.gz", hash = "sha256:e38464a49c6c85d7f1351b0126661487a7e0a14a50f1675ec50eb34d4f20ef21", size = 29711, upload-time = "2022-07-20T10:28:36.115Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/49/97/fa78e3d2f65c02c8e1268b9aba606569fe97f6c8f7c2d74394553347c145/rsa-4.9-py3-none-any.whl", hash = "sha256:90260d9058e514786967344d0ef75fa8727eed8a7d2e43ce9f4bcf1b536174f7", size = 34315, upload-time = "2022-07-20T10:28:34.978Z" }, +] + +[[package]] +name = "ruamel-yaml" +version = "0.18.14" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "ruamel-yaml-clib", marker = "platform_python_implementation == 'CPython' and sys_platform == 'linux'" }, +] +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 = [ + { url = "https://files.pythonhosted.org/packages/af/6d/6fe4805235e193aad4aaf979160dd1f3c487c57d48b810c816e6e842171b/ruamel.yaml-0.18.14-py3-none-any.whl", hash = "sha256:710ff198bb53da66718c7db27eec4fbcc9aa6ca7204e4c1df2f282b6fe5eb6b2", size = 118570, upload-time = "2025-06-09T08:51:06.348Z" }, +] + +[[package]] +name = "ruamel-yaml-clib" +version = "0.2.12" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/20/84/80203abff8ea4993a87d823a5f632e4d92831ef75d404c9fc78d0176d2b5/ruamel.yaml.clib-0.2.12.tar.gz", hash = "sha256:6c8fbb13ec503f99a91901ab46e0b07ae7941cd527393187039aec586fdfd36f", size = 225315, upload-time = "2024-10-20T10:10:56.22Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/fb/8f/683c6ad562f558cbc4f7c029abcd9599148c51c54b5ef0f24f2638da9fbb/ruamel.yaml.clib-0.2.12-cp311-cp311-macosx_13_0_arm64.whl", hash = "sha256:4a6679521a58256a90b0d89e03992c15144c5f3858f40d7c18886023d7943db6", size = 132224, upload-time = "2024-10-20T10:12:45.162Z" }, + { url = "https://files.pythonhosted.org/packages/3c/d2/b79b7d695e2f21da020bd44c782490578f300dd44f0a4c57a92575758a76/ruamel.yaml.clib-0.2.12-cp311-cp311-manylinux2014_aarch64.whl", hash = "sha256:d84318609196d6bd6da0edfa25cedfbabd8dbde5140a0a23af29ad4b8f91fb1e", size = 641480, upload-time = "2024-10-20T10:12:46.758Z" }, + { url = "https://files.pythonhosted.org/packages/68/6e/264c50ce2a31473a9fdbf4fa66ca9b2b17c7455b31ef585462343818bd6c/ruamel.yaml.clib-0.2.12-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bb43a269eb827806502c7c8efb7ae7e9e9d0573257a46e8e952f4d4caba4f31e", size = 739068, upload-time = "2024-10-20T10:12:48.605Z" }, + { url = "https://files.pythonhosted.org/packages/86/29/88c2567bc893c84d88b4c48027367c3562ae69121d568e8a3f3a8d363f4d/ruamel.yaml.clib-0.2.12-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:811ea1594b8a0fb466172c384267a4e5e367298af6b228931f273b111f17ef52", size = 703012, upload-time = "2024-10-20T10:12:51.124Z" }, + { url = "https://files.pythonhosted.org/packages/11/46/879763c619b5470820f0cd6ca97d134771e502776bc2b844d2adb6e37753/ruamel.yaml.clib-0.2.12-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:cf12567a7b565cbf65d438dec6cfbe2917d3c1bdddfce84a9930b7d35ea59642", size = 704352, upload-time = "2024-10-21T11:26:41.438Z" }, + { url = "https://files.pythonhosted.org/packages/02/80/ece7e6034256a4186bbe50dee28cd032d816974941a6abf6a9d65e4228a7/ruamel.yaml.clib-0.2.12-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:7dd5adc8b930b12c8fc5b99e2d535a09889941aa0d0bd06f4749e9a9397c71d2", size = 737344, upload-time = "2024-10-21T11:26:43.62Z" }, + { url = "https://files.pythonhosted.org/packages/f0/ca/e4106ac7e80efbabdf4bf91d3d32fc424e41418458251712f5672eada9ce/ruamel.yaml.clib-0.2.12-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:1492a6051dab8d912fc2adeef0e8c72216b24d57bd896ea607cb90bb0c4981d3", size = 714498, upload-time = "2024-12-11T19:58:15.592Z" }, + { url = "https://files.pythonhosted.org/packages/67/58/b1f60a1d591b771298ffa0428237afb092c7f29ae23bad93420b1eb10703/ruamel.yaml.clib-0.2.12-cp311-cp311-win32.whl", hash = "sha256:bd0a08f0bab19093c54e18a14a10b4322e1eacc5217056f3c063bd2f59853ce4", size = 100205, upload-time = "2024-10-20T10:12:52.865Z" }, + { url = "https://files.pythonhosted.org/packages/b4/4f/b52f634c9548a9291a70dfce26ca7ebce388235c93588a1068028ea23fcc/ruamel.yaml.clib-0.2.12-cp311-cp311-win_amd64.whl", hash = "sha256:a274fb2cb086c7a3dea4322ec27f4cb5cc4b6298adb583ab0e211a4682f241eb", size = 118185, upload-time = "2024-10-20T10:12:54.652Z" }, + { url = "https://files.pythonhosted.org/packages/48/41/e7a405afbdc26af961678474a55373e1b323605a4f5e2ddd4a80ea80f628/ruamel.yaml.clib-0.2.12-cp312-cp312-macosx_14_0_arm64.whl", hash = "sha256:20b0f8dc160ba83b6dcc0e256846e1a02d044e13f7ea74a3d1d56ede4e48c632", size = 133433, upload-time = "2024-10-20T10:12:55.657Z" }, + { url = "https://files.pythonhosted.org/packages/ec/b0/b850385604334c2ce90e3ee1013bd911aedf058a934905863a6ea95e9eb4/ruamel.yaml.clib-0.2.12-cp312-cp312-manylinux2014_aarch64.whl", hash = "sha256:943f32bc9dedb3abff9879edc134901df92cfce2c3d5c9348f172f62eb2d771d", size = 647362, upload-time = "2024-10-20T10:12:57.155Z" }, + { url = "https://files.pythonhosted.org/packages/44/d0/3f68a86e006448fb6c005aee66565b9eb89014a70c491d70c08de597f8e4/ruamel.yaml.clib-0.2.12-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:95c3829bb364fdb8e0332c9931ecf57d9be3519241323c5274bd82f709cebc0c", size = 754118, upload-time = "2024-10-20T10:12:58.501Z" }, + { url = "https://files.pythonhosted.org/packages/52/a9/d39f3c5ada0a3bb2870d7db41901125dbe2434fa4f12ca8c5b83a42d7c53/ruamel.yaml.clib-0.2.12-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:749c16fcc4a2b09f28843cda5a193e0283e47454b63ec4b81eaa2242f50e4ccd", size = 706497, upload-time = "2024-10-20T10:13:00.211Z" }, + { url = "https://files.pythonhosted.org/packages/b0/fa/097e38135dadd9ac25aecf2a54be17ddf6e4c23e43d538492a90ab3d71c6/ruamel.yaml.clib-0.2.12-cp312-cp312-musllinux_1_1_i686.whl", hash = "sha256:bf165fef1f223beae7333275156ab2022cffe255dcc51c27f066b4370da81e31", size = 698042, upload-time = "2024-10-21T11:26:46.038Z" }, + { url = "https://files.pythonhosted.org/packages/ec/d5/a659ca6f503b9379b930f13bc6b130c9f176469b73b9834296822a83a132/ruamel.yaml.clib-0.2.12-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:32621c177bbf782ca5a18ba4d7af0f1082a3f6e517ac2a18b3974d4edf349680", size = 745831, upload-time = "2024-10-21T11:26:47.487Z" }, + { url = "https://files.pythonhosted.org/packages/db/5d/36619b61ffa2429eeaefaab4f3374666adf36ad8ac6330d855848d7d36fd/ruamel.yaml.clib-0.2.12-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:b82a7c94a498853aa0b272fd5bc67f29008da798d4f93a2f9f289feb8426a58d", size = 715692, upload-time = "2024-12-11T19:58:17.252Z" }, + { url = "https://files.pythonhosted.org/packages/b1/82/85cb92f15a4231c89b95dfe08b09eb6adca929ef7df7e17ab59902b6f589/ruamel.yaml.clib-0.2.12-cp312-cp312-win32.whl", hash = "sha256:e8c4ebfcfd57177b572e2040777b8abc537cdef58a2120e830124946aa9b42c5", size = 98777, upload-time = "2024-10-20T10:13:01.395Z" }, + { url = "https://files.pythonhosted.org/packages/d7/8f/c3654f6f1ddb75daf3922c3d8fc6005b1ab56671ad56ffb874d908bfa668/ruamel.yaml.clib-0.2.12-cp312-cp312-win_amd64.whl", hash = "sha256:0467c5965282c62203273b838ae77c0d29d7638c8a4e3a1c8bdd3602c10904e4", size = 115523, upload-time = "2024-10-20T10:13:02.768Z" }, +] + +[[package]] +name = "ruff" +version = "0.6.9" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/26/0d/6148a48dab5662ca1d5a93b7c0d13c03abd3cc7e2f35db08410e47cef15d/ruff-0.6.9.tar.gz", hash = "sha256:b076ef717a8e5bc819514ee1d602bbdca5b4420ae13a9cf61a0c0a4f53a2baa2", size = 3095355, upload-time = "2024-10-04T13:40:28.594Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/6e/8f/f7a0a0ef1818662efb32ed6df16078c95da7a0a3248d64c2410c1e27799f/ruff-0.6.9-py3-none-linux_armv6l.whl", hash = "sha256:064df58d84ccc0ac0fcd63bc3090b251d90e2a372558c0f057c3f75ed73e1ccd", size = 10440526, upload-time = "2024-10-04T13:39:21.747Z" }, + { url = "https://files.pythonhosted.org/packages/8b/69/b179a5faf936a9e2ab45bb412a668e4661eded964ccfa19d533f29463ef6/ruff-0.6.9-py3-none-macosx_10_12_x86_64.whl", hash = "sha256:140d4b5c9f5fc7a7b074908a78ab8d384dd7f6510402267bc76c37195c02a7ec", size = 10034612, upload-time = "2024-10-04T13:39:26.301Z" }, + { url = "https://files.pythonhosted.org/packages/c7/ef/fd1b4be979c579d191eeac37b5cfc0ec906de72c8bcd8595e2c81bb700c1/ruff-0.6.9-py3-none-macosx_11_0_arm64.whl", hash = "sha256:53fd8ca5e82bdee8da7f506d7b03a261f24cd43d090ea9db9a1dc59d9313914c", size = 9706197, upload-time = "2024-10-04T13:39:29.297Z" }, + { url = "https://files.pythonhosted.org/packages/29/61/b376d775deb5851cb48d893c568b511a6d3625ef2c129ad5698b64fb523c/ruff-0.6.9-py3-none-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:645d7d8761f915e48a00d4ecc3686969761df69fb561dd914a773c1a8266e14e", size = 10751855, upload-time = "2024-10-04T13:39:33.175Z" }, + { url = "https://files.pythonhosted.org/packages/13/d7/def9e5f446d75b9a9c19b24231a3a658c075d79163b08582e56fa5dcfa38/ruff-0.6.9-py3-none-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:eae02b700763e3847595b9d2891488989cac00214da7f845f4bcf2989007d577", size = 10200889, upload-time = "2024-10-04T13:39:36.867Z" }, + { url = "https://files.pythonhosted.org/packages/6c/d6/7f34160818bcb6e84ce293a5966cba368d9112ff0289b273fbb689046047/ruff-0.6.9-py3-none-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:7d5ccc9e58112441de8ad4b29dcb7a86dc25c5f770e3c06a9d57e0e5eba48829", size = 11038678, upload-time = "2024-10-04T13:39:40.428Z" }, + { url = "https://files.pythonhosted.org/packages/13/34/a40ff8ae62fb1b26fb8e6fa7e64bc0e0a834b47317880de22edd6bfb54fb/ruff-0.6.9-py3-none-manylinux_2_17_ppc64.manylinux2014_ppc64.whl", hash = "sha256:417b81aa1c9b60b2f8edc463c58363075412866ae4e2b9ab0f690dc1e87ac1b5", size = 11808682, upload-time = "2024-10-04T13:39:52.141Z" }, + { url = "https://files.pythonhosted.org/packages/2e/6d/25a4386ae4009fc798bd10ba48c942d1b0b3e459b5403028f1214b6dd161/ruff-0.6.9-py3-none-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:3c866b631f5fbce896a74a6e4383407ba7507b815ccc52bcedabb6810fdb3ef7", size = 11330446, upload-time = "2024-10-04T13:39:55.783Z" }, + { url = "https://files.pythonhosted.org/packages/f7/f6/bdf891a9200d692c94ebcd06ae5a2fa5894e522f2c66c2a12dd5d8cb2654/ruff-0.6.9-py3-none-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:7b118afbb3202f5911486ad52da86d1d52305b59e7ef2031cea3425142b97d6f", size = 12483048, upload-time = "2024-10-04T13:39:58.845Z" }, + { url = "https://files.pythonhosted.org/packages/a7/86/96f4252f41840e325b3fa6c48297e661abb9f564bd7dcc0572398c8daa42/ruff-0.6.9-py3-none-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a67267654edc23c97335586774790cde402fb6bbdb3c2314f1fc087dee320bfa", size = 10936855, upload-time = "2024-10-04T13:40:01.818Z" }, + { url = "https://files.pythonhosted.org/packages/45/87/801a52d26c8dbf73424238e9908b9ceac430d903c8ef35eab1b44fcfa2bd/ruff-0.6.9-py3-none-musllinux_1_2_aarch64.whl", hash = "sha256:3ef0cc774b00fec123f635ce5c547dac263f6ee9fb9cc83437c5904183b55ceb", size = 10713007, upload-time = "2024-10-04T13:40:05.384Z" }, + { url = "https://files.pythonhosted.org/packages/be/27/6f7161d90320a389695e32b6ebdbfbedde28ccbf52451e4b723d7ce744ad/ruff-0.6.9-py3-none-musllinux_1_2_armv7l.whl", hash = "sha256:12edd2af0c60fa61ff31cefb90aef4288ac4d372b4962c2864aeea3a1a2460c0", size = 10274594, upload-time = "2024-10-04T13:40:08.801Z" }, + { url = "https://files.pythonhosted.org/packages/00/52/dc311775e7b5f5b19831563cb1572ecce63e62681bccc609867711fae317/ruff-0.6.9-py3-none-musllinux_1_2_i686.whl", hash = "sha256:55bb01caeaf3a60b2b2bba07308a02fca6ab56233302406ed5245180a05c5625", size = 10608024, upload-time = "2024-10-04T13:40:11.923Z" }, + { url = "https://files.pythonhosted.org/packages/98/b6/be0a1ddcbac65a30c985cf7224c4fce786ba2c51e7efeb5178fe410ed3cf/ruff-0.6.9-py3-none-musllinux_1_2_x86_64.whl", hash = "sha256:925d26471fa24b0ce5a6cdfab1bb526fb4159952385f386bdcc643813d472039", size = 10982085, upload-time = "2024-10-04T13:40:15.539Z" }, + { url = "https://files.pythonhosted.org/packages/bb/a4/c84bc13d0b573cf7bb7d17b16d6d29f84267c92d79b2f478d4ce322e8e72/ruff-0.6.9-py3-none-win32.whl", hash = "sha256:eb61ec9bdb2506cffd492e05ac40e5bc6284873aceb605503d8494180d6fc84d", size = 8522088, upload-time = "2024-10-04T13:40:19.168Z" }, + { url = "https://files.pythonhosted.org/packages/74/be/fc352bd8ca40daae8740b54c1c3e905a7efe470d420a268cd62150248c91/ruff-0.6.9-py3-none-win_amd64.whl", hash = "sha256:785d31851c1ae91f45b3d8fe23b8ae4b5170089021fbb42402d811135f0b7117", size = 9359275, upload-time = "2024-10-04T13:40:22.852Z" }, + { url = "https://files.pythonhosted.org/packages/3e/14/fd026bc74ded05e2351681545a5f626e78ef831f8edce064d61acd2e6ec7/ruff-0.6.9-py3-none-win_arm64.whl", hash = "sha256:a9641e31476d601f83cd602608739a0840e348bda93fec9f1ee816f8b6798b93", size = 8679879, upload-time = "2024-10-04T13:40:25.797Z" }, +] + +[[package]] +name = "s3transfer" +version = "0.11.5" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "botocore", marker = "sys_platform == 'linux'" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/c4/2b/5c9562795c2eb2b5f63536961754760c25bf0f34af93d36aa28dea2fb303/s3transfer-0.11.5.tar.gz", hash = "sha256:8c8aad92784779ab8688a61aefff3e28e9ebdce43142808eaa3f0b0f402f68b7", size = 149107, upload-time = "2025-04-17T19:23:19.051Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/45/39/13402e323666d17850eca87e4cd6ecfcf9fd7809cac9efdcce10272fc29d/s3transfer-0.11.5-py3-none-any.whl", hash = "sha256:757af0f2ac150d3c75bc4177a32355c3862a98d20447b69a0161812992fe0bd4", size = 84782, upload-time = "2025-04-17T19:23:17.516Z" }, +] + +[[package]] +name = "safetensors" +version = "0.5.3" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/71/7e/2d5d6ee7b40c0682315367ec7475693d110f512922d582fef1bd4a63adc3/safetensors-0.5.3.tar.gz", hash = "sha256:b6b0d6ecacec39a4fdd99cc19f4576f5219ce858e6fd8dbe7609df0b8dc56965", size = 67210, upload-time = "2025-02-26T09:15:13.155Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/18/ae/88f6c49dbd0cc4da0e08610019a3c78a7d390879a919411a410a1876d03a/safetensors-0.5.3-cp38-abi3-macosx_10_12_x86_64.whl", hash = "sha256:bd20eb133db8ed15b40110b7c00c6df51655a2998132193de2f75f72d99c7073", size = 436917, upload-time = "2025-02-26T09:15:03.702Z" }, + { url = "https://files.pythonhosted.org/packages/b8/3b/11f1b4a2f5d2ab7da34ecc062b0bc301f2be024d110a6466726bec8c055c/safetensors-0.5.3-cp38-abi3-macosx_11_0_arm64.whl", hash = "sha256:21d01c14ff6c415c485616b8b0bf961c46b3b343ca59110d38d744e577f9cce7", size = 418419, upload-time = "2025-02-26T09:15:01.765Z" }, + { url = "https://files.pythonhosted.org/packages/5d/9a/add3e6fef267658075c5a41573c26d42d80c935cdc992384dfae435feaef/safetensors-0.5.3-cp38-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:11bce6164887cd491ca75c2326a113ba934be596e22b28b1742ce27b1d076467", size = 459493, upload-time = "2025-02-26T09:14:51.812Z" }, + { url = "https://files.pythonhosted.org/packages/df/5c/bf2cae92222513cc23b3ff85c4a1bb2811a2c3583ac0f8e8d502751de934/safetensors-0.5.3-cp38-abi3-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:4a243be3590bc3301c821da7a18d87224ef35cbd3e5f5727e4e0728b8172411e", size = 472400, upload-time = "2025-02-26T09:14:53.549Z" }, + { url = "https://files.pythonhosted.org/packages/58/11/7456afb740bd45782d0f4c8e8e1bb9e572f1bf82899fb6ace58af47b4282/safetensors-0.5.3-cp38-abi3-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:8bd84b12b1670a6f8e50f01e28156422a2bc07fb16fc4e98bded13039d688a0d", size = 522891, upload-time = "2025-02-26T09:14:55.717Z" }, + { url = "https://files.pythonhosted.org/packages/57/3d/fe73a9d2ace487e7285f6e157afee2383bd1ddb911b7cb44a55cf812eae3/safetensors-0.5.3-cp38-abi3-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:391ac8cab7c829452175f871fcaf414aa1e292b5448bd02620f675a7f3e7abb9", size = 537694, upload-time = "2025-02-26T09:14:57.036Z" }, + { url = "https://files.pythonhosted.org/packages/a6/f8/dae3421624fcc87a89d42e1898a798bc7ff72c61f38973a65d60df8f124c/safetensors-0.5.3-cp38-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:cead1fa41fc54b1e61089fa57452e8834f798cb1dc7a09ba3524f1eb08e0317a", size = 471642, upload-time = "2025-02-26T09:15:00.544Z" }, + { url = "https://files.pythonhosted.org/packages/ce/20/1fbe16f9b815f6c5a672f5b760951e20e17e43f67f231428f871909a37f6/safetensors-0.5.3-cp38-abi3-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:1077f3e94182d72618357b04b5ced540ceb71c8a813d3319f1aba448e68a770d", size = 502241, upload-time = "2025-02-26T09:14:58.303Z" }, + { url = "https://files.pythonhosted.org/packages/5f/18/8e108846b506487aa4629fe4116b27db65c3dde922de2c8e0cc1133f3f29/safetensors-0.5.3-cp38-abi3-musllinux_1_2_aarch64.whl", hash = "sha256:799021e78287bac619c7b3f3606730a22da4cda27759ddf55d37c8db7511c74b", size = 638001, upload-time = "2025-02-26T09:15:05.79Z" }, + { url = "https://files.pythonhosted.org/packages/82/5a/c116111d8291af6c8c8a8b40628fe833b9db97d8141c2a82359d14d9e078/safetensors-0.5.3-cp38-abi3-musllinux_1_2_armv7l.whl", hash = "sha256:df26da01aaac504334644e1b7642fa000bfec820e7cef83aeac4e355e03195ff", size = 734013, upload-time = "2025-02-26T09:15:07.892Z" }, + { url = "https://files.pythonhosted.org/packages/7d/ff/41fcc4d3b7de837963622e8610d998710705bbde9a8a17221d85e5d0baad/safetensors-0.5.3-cp38-abi3-musllinux_1_2_i686.whl", hash = "sha256:32c3ef2d7af8b9f52ff685ed0bc43913cdcde135089ae322ee576de93eae5135", size = 670687, upload-time = "2025-02-26T09:15:09.979Z" }, + { url = "https://files.pythonhosted.org/packages/40/ad/2b113098e69c985a3d8fbda4b902778eae4a35b7d5188859b4a63d30c161/safetensors-0.5.3-cp38-abi3-musllinux_1_2_x86_64.whl", hash = "sha256:37f1521be045e56fc2b54c606d4455573e717b2d887c579ee1dbba5f868ece04", size = 643147, upload-time = "2025-02-26T09:15:11.185Z" }, + { url = "https://files.pythonhosted.org/packages/0a/0c/95aeb51d4246bd9a3242d3d8349c1112b4ee7611a4b40f0c5c93b05f001d/safetensors-0.5.3-cp38-abi3-win32.whl", hash = "sha256:cfc0ec0846dcf6763b0ed3d1846ff36008c6e7290683b61616c4b040f6a54ace", size = 296677, upload-time = "2025-02-26T09:15:16.554Z" }, + { url = "https://files.pythonhosted.org/packages/69/e2/b011c38e5394c4c18fb5500778a55ec43ad6106126e74723ffaee246f56e/safetensors-0.5.3-cp38-abi3-win_amd64.whl", hash = "sha256:836cbbc320b47e80acd40e44c8682db0e8ad7123209f69b093def21ec7cafd11", size = 308878, upload-time = "2025-02-26T09:15:14.99Z" }, +] + +[[package]] +name = "scikit-learn" +version = "1.2.2" +source = { registry = "https://pypi.org/simple" } +resolution-markers = [ + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", +] +dependencies = [ + { name = "joblib", marker = "(sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-trustyai') or (sys_platform == 'linux' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai')" }, + { name = "numpy", version = "1.24.4", source = { registry = "https://pypi.org/simple" }, marker = "(sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-trustyai') or (sys_platform == 'linux' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai')" }, + { name = "scipy", marker = "(sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-trustyai') or (sys_platform == 'linux' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai')" }, + { name = "threadpoolctl", marker = "(sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-trustyai') or (sys_platform == 'linux' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai')" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/c9/fa/8e158d81e3602da1e7bafbd4987938bc003fe4b0f44d65681e7f8face95a/scikit-learn-1.2.2.tar.gz", hash = "sha256:8429aea30ec24e7a8c7ed8a3fa6213adf3814a6efbea09e16e0a0c71e1a1a3d7", size = 7269934, upload-time = "2023-03-09T09:57:57.31Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/27/4a/1afe473760b07663710a75437b795ef37362aebb8bf513ff3bbf78fbd0c6/scikit_learn-1.2.2-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:dfeaf8be72117eb61a164ea6fc8afb6dfe08c6f90365bde2dc16456e4bc8e45f", size = 9024742, upload-time = "2023-03-09T09:57:22.275Z" }, + { url = "https://files.pythonhosted.org/packages/2f/fd/9fcbe7fe94150e72d87120cbc462bde1971c3674e726b81f4a4c4fdfa8e1/scikit_learn-1.2.2-cp311-cp311-macosx_12_0_arm64.whl", hash = "sha256:fe0aa1a7029ed3e1dcbf4a5bc675aa3b1bc468d9012ecf6c6f081251ca47f590", size = 8375105, upload-time = "2023-03-09T09:57:25.23Z" }, + { url = "https://files.pythonhosted.org/packages/d7/8a/301594a8bb1cfeeb95dd86aa7dfedd31e93211940105429abddf0933cfff/scikit_learn-1.2.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:065e9673e24e0dc5113e2dd2b4ca30c9d8aa2fa90f4c0597241c93b63130d233", size = 9150797, upload-time = "2023-03-09T09:57:27.291Z" }, + { url = "https://files.pythonhosted.org/packages/4c/64/a1e6e92b850b39200c82e3bc54d556b2c634b3904c39ac5cdb10b1c5765f/scikit_learn-1.2.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bf036ea7ef66115e0d49655f16febfa547886deba20149555a41d28f56fd6d3c", size = 9562879, upload-time = "2023-03-09T09:57:30.038Z" }, + { url = "https://files.pythonhosted.org/packages/db/98/169b46a84b48f92df2b5e163fce75d471f4df933f8b3d925a61133210776/scikit_learn-1.2.2-cp311-cp311-win_amd64.whl", hash = "sha256:8b0670d4224a3c2d596fd572fb4fa673b2a0ccfb07152688ebd2ea0b8c61025c", size = 8261146, upload-time = "2023-03-09T09:57:32.138Z" }, +] + +[[package]] +name = "scikit-learn" +version = "1.6.1" +source = { registry = "https://pypi.org/simple" } +resolution-markers = [ + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", +] +dependencies = [ + { name = "joblib", marker = "(sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-preferred') or (sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-tensorflow') or (sys_platform == 'linux' and extra == 'group-9-notebooks-jupyter-datascience-image') or (sys_platform == 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (sys_platform == 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (sys_platform == 'linux' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (sys_platform == 'linux' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai')" }, + { name = "numpy", version = "1.26.4", source = { registry = "https://pypi.org/simple" }, marker = "(sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-tensorflow') or (sys_platform == 'linux' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (sys_platform == 'linux' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai')" }, + { name = "numpy", version = "2.2.6", source = { registry = "https://pypi.org/simple" }, marker = "(sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-preferred') or (sys_platform == 'linux' and extra == 'group-9-notebooks-jupyter-datascience-image') or (sys_platform == 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (sys_platform == 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai')" }, + { name = "scipy", marker = "(sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-preferred') or (sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-tensorflow') or (sys_platform == 'linux' and extra == 'group-9-notebooks-jupyter-datascience-image') or (sys_platform == 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (sys_platform == 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (sys_platform == 'linux' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (sys_platform == 'linux' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai')" }, + { name = "threadpoolctl", marker = "(sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-preferred') or (sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-tensorflow') or (sys_platform == 'linux' and extra == 'group-9-notebooks-jupyter-datascience-image') or (sys_platform == 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (sys_platform == 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (sys_platform == 'linux' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (sys_platform == 'linux' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai')" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/9e/a5/4ae3b3a0755f7b35a280ac90b28817d1f380318973cff14075ab41ef50d9/scikit_learn-1.6.1.tar.gz", hash = "sha256:b4fc2525eca2c69a59260f583c56a7557c6ccdf8deafdba6e060f94c1c59738e", size = 7068312, upload-time = "2025-01-10T08:07:55.348Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/6c/2a/e291c29670795406a824567d1dfc91db7b699799a002fdaa452bceea8f6e/scikit_learn-1.6.1-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:72abc587c75234935e97d09aa4913a82f7b03ee0b74111dcc2881cba3c5a7b33", size = 12102620, upload-time = "2025-01-10T08:06:16.675Z" }, + { url = "https://files.pythonhosted.org/packages/25/92/ee1d7a00bb6b8c55755d4984fd82608603a3cc59959245068ce32e7fb808/scikit_learn-1.6.1-cp311-cp311-macosx_12_0_arm64.whl", hash = "sha256:b3b00cdc8f1317b5f33191df1386c0befd16625f49d979fe77a8d44cae82410d", size = 11116234, upload-time = "2025-01-10T08:06:21.83Z" }, + { url = "https://files.pythonhosted.org/packages/30/cd/ed4399485ef364bb25f388ab438e3724e60dc218c547a407b6e90ccccaef/scikit_learn-1.6.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:dc4765af3386811c3ca21638f63b9cf5ecf66261cc4815c1db3f1e7dc7b79db2", size = 12592155, upload-time = "2025-01-10T08:06:27.309Z" }, + { url = "https://files.pythonhosted.org/packages/a8/f3/62fc9a5a659bb58a03cdd7e258956a5824bdc9b4bb3c5d932f55880be569/scikit_learn-1.6.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:25fc636bdaf1cc2f4a124a116312d837148b5e10872147bdaf4887926b8c03d8", size = 13497069, upload-time = "2025-01-10T08:06:32.515Z" }, + { url = "https://files.pythonhosted.org/packages/a1/a6/c5b78606743a1f28eae8f11973de6613a5ee87366796583fb74c67d54939/scikit_learn-1.6.1-cp311-cp311-win_amd64.whl", hash = "sha256:fa909b1a36e000a03c382aade0bd2063fd5680ff8b8e501660c0f59f021a6415", size = 11139809, upload-time = "2025-01-10T08:06:35.514Z" }, + { url = "https://files.pythonhosted.org/packages/0a/18/c797c9b8c10380d05616db3bfb48e2a3358c767affd0857d56c2eb501caa/scikit_learn-1.6.1-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:926f207c804104677af4857b2c609940b743d04c4c35ce0ddc8ff4f053cddc1b", size = 12104516, upload-time = "2025-01-10T08:06:40.009Z" }, + { url = "https://files.pythonhosted.org/packages/c4/b7/2e35f8e289ab70108f8cbb2e7a2208f0575dc704749721286519dcf35f6f/scikit_learn-1.6.1-cp312-cp312-macosx_12_0_arm64.whl", hash = "sha256:2c2cae262064e6a9b77eee1c8e768fc46aa0b8338c6a8297b9b6759720ec0ff2", size = 11167837, upload-time = "2025-01-10T08:06:43.305Z" }, + { url = "https://files.pythonhosted.org/packages/a4/f6/ff7beaeb644bcad72bcfd5a03ff36d32ee4e53a8b29a639f11bcb65d06cd/scikit_learn-1.6.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1061b7c028a8663fb9a1a1baf9317b64a257fcb036dae5c8752b2abef31d136f", size = 12253728, upload-time = "2025-01-10T08:06:47.618Z" }, + { url = "https://files.pythonhosted.org/packages/29/7a/8bce8968883e9465de20be15542f4c7e221952441727c4dad24d534c6d99/scikit_learn-1.6.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:2e69fab4ebfc9c9b580a7a80111b43d214ab06250f8a7ef590a4edf72464dd86", size = 13147700, upload-time = "2025-01-10T08:06:50.888Z" }, + { url = "https://files.pythonhosted.org/packages/62/27/585859e72e117fe861c2079bcba35591a84f801e21bc1ab85bce6ce60305/scikit_learn-1.6.1-cp312-cp312-win_amd64.whl", hash = "sha256:70b1d7e85b1c96383f872a519b3375f92f14731e279a7b4c6cfd650cf5dffc52", size = 11110613, upload-time = "2025-01-10T08:06:54.115Z" }, +] + +[[package]] +name = "scikit-learn" +version = "1.7.0" +source = { registry = "https://pypi.org/simple" } +resolution-markers = [ + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", +] +dependencies = [ + { name = "joblib", marker = "(sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-trustyai-image') or (sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image') or (sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-trustyai')" }, + { name = "numpy", version = "1.24.4", source = { registry = "https://pypi.org/simple" }, marker = "(sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai')" }, + { name = "numpy", version = "2.2.6", source = { registry = "https://pypi.org/simple" }, marker = "(sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-pytorchcuda') or (sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-pytorchrocm') or (sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-trustyai') or (sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image') or (sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda') or (sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-trustyai')" }, + { name = "scipy", marker = "(sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-trustyai-image') or (sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image') or (sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-trustyai')" }, + { name = "threadpoolctl", marker = "(sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-trustyai-image') or (sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image') or (sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-trustyai')" }, +] +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/5a/42/c6b41711c2bee01c4800ad8da2862c0b6d2956a399d23ce4d77f2ca7f0c7/scikit_learn-1.7.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:8ef09b1615e1ad04dc0d0054ad50634514818a8eb3ee3dee99af3bffc0ef5007", size = 11719657, upload-time = "2025-06-05T22:01:56.345Z" }, + { url = "https://files.pythonhosted.org/packages/a3/24/44acca76449e391b6b2522e67a63c0454b7c1f060531bdc6d0118fb40851/scikit_learn-1.7.0-cp311-cp311-macosx_12_0_arm64.whl", hash = "sha256:7d7240c7b19edf6ed93403f43b0fcb0fe95b53bc0b17821f8fb88edab97085ef", size = 10712636, upload-time = "2025-06-05T22:01:59.093Z" }, + { url = "https://files.pythonhosted.org/packages/9f/1b/fcad1ccb29bdc9b96bcaa2ed8345d56afb77b16c0c47bafe392cc5d1d213/scikit_learn-1.7.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:80bd3bd4e95381efc47073a720d4cbab485fc483966f1709f1fd559afac57ab8", size = 12242817, upload-time = "2025-06-05T22:02:01.43Z" }, + { url = "https://files.pythonhosted.org/packages/c6/38/48b75c3d8d268a3f19837cb8a89155ead6e97c6892bb64837183ea41db2b/scikit_learn-1.7.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9dbe48d69aa38ecfc5a6cda6c5df5abef0c0ebdb2468e92437e2053f84abb8bc", size = 12873961, upload-time = "2025-06-05T22:02:03.951Z" }, + { url = "https://files.pythonhosted.org/packages/f4/5a/ba91b8c57aa37dbd80d5ff958576a9a8c14317b04b671ae7f0d09b00993a/scikit_learn-1.7.0-cp311-cp311-win_amd64.whl", hash = "sha256:8fa979313b2ffdfa049ed07252dc94038def3ecd49ea2a814db5401c07f1ecfa", size = 10717277, upload-time = "2025-06-05T22:02:06.77Z" }, + { url = "https://files.pythonhosted.org/packages/70/3a/bffab14e974a665a3ee2d79766e7389572ffcaad941a246931c824afcdb2/scikit_learn-1.7.0-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:c2c7243d34aaede0efca7a5a96d67fddaebb4ad7e14a70991b9abee9dc5c0379", size = 11646758, upload-time = "2025-06-05T22:02:09.51Z" }, + { url = "https://files.pythonhosted.org/packages/58/d8/f3249232fa79a70cb40595282813e61453c1e76da3e1a44b77a63dd8d0cb/scikit_learn-1.7.0-cp312-cp312-macosx_12_0_arm64.whl", hash = "sha256:9f39f6a811bf3f15177b66c82cbe0d7b1ebad9f190737dcdef77cfca1ea3c19c", size = 10673971, upload-time = "2025-06-05T22:02:12.217Z" }, + { url = "https://files.pythonhosted.org/packages/67/93/eb14c50533bea2f77758abe7d60a10057e5f2e2cdcf0a75a14c6bc19c734/scikit_learn-1.7.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:63017a5f9a74963d24aac7590287149a8d0f1a0799bbe7173c0d8ba1523293c0", size = 11818428, upload-time = "2025-06-05T22:02:14.947Z" }, + { url = "https://files.pythonhosted.org/packages/08/17/804cc13b22a8663564bb0b55fb89e661a577e4e88a61a39740d58b909efe/scikit_learn-1.7.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:0b2f8a0b1e73e9a08b7cc498bb2aeab36cdc1f571f8ab2b35c6e5d1c7115d97d", size = 12505887, upload-time = "2025-06-05T22:02:17.824Z" }, + { url = "https://files.pythonhosted.org/packages/68/c7/4e956281a077f4835458c3f9656c666300282d5199039f26d9de1dabd9be/scikit_learn-1.7.0-cp312-cp312-win_amd64.whl", hash = "sha256:34cc8d9d010d29fb2b7cbcd5ccc24ffdd80515f65fe9f1e4894ace36b267ce19", size = 10668129, upload-time = "2025-06-05T22:02:20.536Z" }, +] + +[[package]] +name = "scipy" +version = "1.15.3" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "numpy", version = "1.24.4", source = { registry = "https://pypi.org/simple" }, marker = "(sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-trustyai') or (sys_platform == 'linux' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai')" }, + { name = "numpy", version = "1.26.4", source = { registry = "https://pypi.org/simple" }, marker = "(sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-tensorflow') or (sys_platform == 'linux' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (sys_platform == 'linux' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai')" }, + { name = "numpy", version = "2.2.6", source = { registry = "https://pypi.org/simple" }, marker = "(sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-preferred') or (sys_platform == 'linux' and extra == 'group-9-notebooks-jupyter-datascience-image') or (sys_platform == 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (sys_platform == 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred') or (sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchcuda') or (sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchrocm') or (sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai')" }, +] +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/96/ab/5cc9f80f28f6a7dff646c5756e559823614a42b1939d86dd0ed550470210/scipy-1.15.3-cp311-cp311-macosx_10_13_x86_64.whl", hash = "sha256:993439ce220d25e3696d1b23b233dd010169b62f6456488567e830654ee37a6b", size = 38714255, upload-time = "2025-05-08T16:05:14.596Z" }, + { url = "https://files.pythonhosted.org/packages/4a/4a/66ba30abe5ad1a3ad15bfb0b59d22174012e8056ff448cb1644deccbfed2/scipy-1.15.3-cp311-cp311-macosx_12_0_arm64.whl", hash = "sha256:34716e281f181a02341ddeaad584205bd2fd3c242063bd3423d61ac259ca7eba", size = 30111035, upload-time = "2025-05-08T16:05:20.152Z" }, + { url = "https://files.pythonhosted.org/packages/4b/fa/a7e5b95afd80d24313307f03624acc65801846fa75599034f8ceb9e2cbf6/scipy-1.15.3-cp311-cp311-macosx_14_0_arm64.whl", hash = "sha256:3b0334816afb8b91dab859281b1b9786934392aa3d527cd847e41bb6f45bee65", size = 22384499, upload-time = "2025-05-08T16:05:24.494Z" }, + { url = "https://files.pythonhosted.org/packages/17/99/f3aaddccf3588bb4aea70ba35328c204cadd89517a1612ecfda5b2dd9d7a/scipy-1.15.3-cp311-cp311-macosx_14_0_x86_64.whl", hash = "sha256:6db907c7368e3092e24919b5e31c76998b0ce1684d51a90943cb0ed1b4ffd6c1", size = 25152602, upload-time = "2025-05-08T16:05:29.313Z" }, + { url = "https://files.pythonhosted.org/packages/56/c5/1032cdb565f146109212153339f9cb8b993701e9fe56b1c97699eee12586/scipy-1.15.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:721d6b4ef5dc82ca8968c25b111e307083d7ca9091bc38163fb89243e85e3889", size = 35503415, upload-time = "2025-05-08T16:05:34.699Z" }, + { url = "https://files.pythonhosted.org/packages/bd/37/89f19c8c05505d0601ed5650156e50eb881ae3918786c8fd7262b4ee66d3/scipy-1.15.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:39cb9c62e471b1bb3750066ecc3a3f3052b37751c7c3dfd0fd7e48900ed52982", size = 37652622, upload-time = "2025-05-08T16:05:40.762Z" }, + { url = "https://files.pythonhosted.org/packages/7e/31/be59513aa9695519b18e1851bb9e487de66f2d31f835201f1b42f5d4d475/scipy-1.15.3-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:795c46999bae845966368a3c013e0e00947932d68e235702b5c3f6ea799aa8c9", size = 37244796, upload-time = "2025-05-08T16:05:48.119Z" }, + { url = "https://files.pythonhosted.org/packages/10/c0/4f5f3eeccc235632aab79b27a74a9130c6c35df358129f7ac8b29f562ac7/scipy-1.15.3-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:18aaacb735ab38b38db42cb01f6b92a2d0d4b6aabefeb07f02849e47f8fb3594", size = 40047684, upload-time = "2025-05-08T16:05:54.22Z" }, + { url = "https://files.pythonhosted.org/packages/ab/a7/0ddaf514ce8a8714f6ed243a2b391b41dbb65251affe21ee3077ec45ea9a/scipy-1.15.3-cp311-cp311-win_amd64.whl", hash = "sha256:ae48a786a28412d744c62fd7816a4118ef97e5be0bee968ce8f0a2fba7acf3bb", size = 41246504, upload-time = "2025-05-08T16:06:00.437Z" }, + { url = "https://files.pythonhosted.org/packages/37/4b/683aa044c4162e10ed7a7ea30527f2cbd92e6999c10a8ed8edb253836e9c/scipy-1.15.3-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:6ac6310fdbfb7aa6612408bd2f07295bcbd3fda00d2d702178434751fe48e019", size = 38766735, upload-time = "2025-05-08T16:06:06.471Z" }, + { url = "https://files.pythonhosted.org/packages/7b/7e/f30be3d03de07f25dc0ec926d1681fed5c732d759ac8f51079708c79e680/scipy-1.15.3-cp312-cp312-macosx_12_0_arm64.whl", hash = "sha256:185cd3d6d05ca4b44a8f1595af87f9c372bb6acf9c808e99aa3e9aa03bd98cf6", size = 30173284, upload-time = "2025-05-08T16:06:11.686Z" }, + { url = "https://files.pythonhosted.org/packages/07/9c/0ddb0d0abdabe0d181c1793db51f02cd59e4901da6f9f7848e1f96759f0d/scipy-1.15.3-cp312-cp312-macosx_14_0_arm64.whl", hash = "sha256:05dc6abcd105e1a29f95eada46d4a3f251743cfd7d3ae8ddb4088047f24ea477", size = 22446958, upload-time = "2025-05-08T16:06:15.97Z" }, + { url = "https://files.pythonhosted.org/packages/af/43/0bce905a965f36c58ff80d8bea33f1f9351b05fad4beaad4eae34699b7a1/scipy-1.15.3-cp312-cp312-macosx_14_0_x86_64.whl", hash = "sha256:06efcba926324df1696931a57a176c80848ccd67ce6ad020c810736bfd58eb1c", size = 25242454, upload-time = "2025-05-08T16:06:20.394Z" }, + { url = "https://files.pythonhosted.org/packages/56/30/a6f08f84ee5b7b28b4c597aca4cbe545535c39fe911845a96414700b64ba/scipy-1.15.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c05045d8b9bfd807ee1b9f38761993297b10b245f012b11b13b91ba8945f7e45", size = 35210199, upload-time = "2025-05-08T16:06:26.159Z" }, + { url = "https://files.pythonhosted.org/packages/0b/1f/03f52c282437a168ee2c7c14a1a0d0781a9a4a8962d84ac05c06b4c5b555/scipy-1.15.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:271e3713e645149ea5ea3e97b57fdab61ce61333f97cfae392c28ba786f9bb49", size = 37309455, upload-time = "2025-05-08T16:06:32.778Z" }, + { url = "https://files.pythonhosted.org/packages/89/b1/fbb53137f42c4bf630b1ffdfc2151a62d1d1b903b249f030d2b1c0280af8/scipy-1.15.3-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:6cfd56fc1a8e53f6e89ba3a7a7251f7396412d655bca2aa5611c8ec9a6784a1e", size = 36885140, upload-time = "2025-05-08T16:06:39.249Z" }, + { url = "https://files.pythonhosted.org/packages/2e/2e/025e39e339f5090df1ff266d021892694dbb7e63568edcfe43f892fa381d/scipy-1.15.3-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:0ff17c0bb1cb32952c09217d8d1eed9b53d1463e5f1dd6052c7857f83127d539", size = 39710549, upload-time = "2025-05-08T16:06:45.729Z" }, + { url = "https://files.pythonhosted.org/packages/e6/eb/3bf6ea8ab7f1503dca3a10df2e4b9c3f6b3316df07f6c0ded94b281c7101/scipy-1.15.3-cp312-cp312-win_amd64.whl", hash = "sha256:52092bc0472cfd17df49ff17e70624345efece4e1a12b23783a1ac59a1b728ed", size = 40966184, upload-time = "2025-05-08T16:06:52.623Z" }, +] + +[[package]] +name = "send2trash" +version = "1.8.3" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/fd/3a/aec9b02217bb79b87bbc1a21bc6abc51e3d5dcf65c30487ac96c0908c722/Send2Trash-1.8.3.tar.gz", hash = "sha256:b18e7a3966d99871aefeb00cfbcfdced55ce4871194810fc71f4aa484b953abf", size = 17394, upload-time = "2024-04-07T00:01:09.267Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/40/b0/4562db6223154aa4e22f939003cb92514c79f3d4dccca3444253fd17f902/Send2Trash-1.8.3-py3-none-any.whl", hash = "sha256:0c31227e0bd08961c7665474a3d1ef7193929fedda4233843689baa056be46c9", size = 18072, upload-time = "2024-04-07T00:01:07.438Z" }, +] + +[[package]] +name = "setuptools" +version = "75.8.2" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/d1/53/43d99d7687e8cdef5ab5f9ec5eaf2c0423c2b35133a2b7e7bc276fc32b21/setuptools-75.8.2.tar.gz", hash = "sha256:4880473a969e5f23f2a2be3646b2dfd84af9028716d398e46192f84bc36900d2", size = 1344083, upload-time = "2025-02-26T20:45:19.103Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/a9/38/7d7362e031bd6dc121e5081d8cb6aa6f6fedf2b67bf889962134c6da4705/setuptools-75.8.2-py3-none-any.whl", hash = "sha256:558e47c15f1811c1fa7adbd0096669bf76c1d3f433f58324df69f3f5ecac4e8f", size = 1229385, upload-time = "2025-02-26T20:45:17.259Z" }, +] + +[[package]] +name = "simpervisor" +version = "1.0.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/dd/fc/9182a4049036c5de29f84a16c5a33304ffc4dbb06d76d569ded8ad527574/simpervisor-1.0.0.tar.gz", hash = "sha256:7eb87ca86d5e276976f5bb0290975a05d452c6a7b7f58062daea7d8369c823c1", size = 14637, upload-time = "2023-05-18T14:01:27.069Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/9e/65/be223a02df814a3dbd84d8a0c446d21d4860a4f23ec4d81aabea34e7e994/simpervisor-1.0.0-py3-none-any.whl", hash = "sha256:3e313318264559beea3f475ead202bc1cd58a2f1288363abb5657d306c5b8388", size = 8342, upload-time = "2023-05-18T14:01:25.92Z" }, +] + +[[package]] +name = "six" +version = "1.17.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/94/e7/b2c673351809dca68a0e064b6af791aa332cf192da575fd474ed7d6f16a2/six-1.17.0.tar.gz", hash = "sha256:ff70335d468e7eb6ec65b95b99d3a2836546063f63acc5171de367e834932a81", size = 34031, upload-time = "2024-12-04T17:35:28.174Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/b7/ce/149a00dd41f10bc29e5921b496af8b574d8413afcd5e30dfa0ed46c2cc5e/six-1.17.0-py2.py3-none-any.whl", hash = "sha256:4721f391ed90541fddacab5acf947aa0d3dc7d27b2e1e8eda2be8970586c3274", size = 11050, upload-time = "2024-12-04T17:35:26.475Z" }, +] + +[[package]] +name = "skl2onnx" +version = "1.18.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "onnx", marker = "sys_platform == 'linux'" }, + { name = "onnxconverter-common", marker = "sys_platform == 'linux'" }, + { name = "scikit-learn", version = "1.2.2", source = { registry = "https://pypi.org/simple" }, marker = "(sys_platform == 'linux' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai')" }, + { name = "scikit-learn", version = "1.6.1", source = { registry = "https://pypi.org/simple" }, marker = "(sys_platform == 'linux' and extra == 'group-9-notebooks-jupyter-datascience-image') or (sys_platform == 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (sys_platform == 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (sys_platform == 'linux' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (sys_platform == 'linux' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred') or (sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-tensorflow') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai')" }, + { name = "scikit-learn", version = "1.7.0", source = { registry = "https://pypi.org/simple" }, marker = "(sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-trustyai-image') or (sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image') or (sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-trustyai')" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/a9/fb/f91b284365bab4ddcb0f77f573e60dc96bc232648de997814e3ddd832e97/skl2onnx-1.18.0.tar.gz", hash = "sha256:39ea4ae30c5c182355a1824467013158214444e0ce0b18f33338bd827d4fb00f", size = 935240, upload-time = "2024-12-18T07:25:09.448Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/08/de/e8825727acd80484aa28080de62e4dc21f076d6887c10db49e2c8a66578f/skl2onnx-1.18.0-py2.py3-none-any.whl", hash = "sha256:1345d8a1d3aa4a11abfbed4bc984b777023dad85e1c9fe4eb727cba5ee0fcaa8", size = 300310, upload-time = "2024-12-18T07:25:06.469Z" }, +] + +[[package]] +name = "smart-open" +version = "7.1.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "wrapt", version = "1.14.1", source = { registry = "https://pypi.org/simple" }, marker = "(sys_platform == 'linux' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai')" }, + { name = "wrapt", version = "1.17.2", source = { registry = "https://pypi.org/simple" }, marker = "(sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base') or (sys_platform == 'linux' and extra == 'group-9-notebooks-jupyter-datascience-image') or (sys_platform == 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (sys_platform == 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (sys_platform == 'linux' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (sys_platform == 'linux' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai')" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/21/30/1f41c3d3b8cec82024b4b277bfd4e5b18b765ae7279eb9871fa25c503778/smart_open-7.1.0.tar.gz", hash = "sha256:a4f09f84f0f6d3637c6543aca7b5487438877a21360e7368ccf1f704789752ba", size = 72044, upload-time = "2024-12-17T13:19:17.71Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/7a/18/9a8d9f01957aa1f8bbc5676d54c2e33102d247e146c1a3679d3bd5cc2e3a/smart_open-7.1.0-py3-none-any.whl", hash = "sha256:4b8489bb6058196258bafe901730c7db0dcf4f083f316e97269c66f45502055b", size = 61746, upload-time = "2024-12-17T13:19:21.076Z" }, +] + +[[package]] +name = "smmap" +version = "5.0.2" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/44/cd/a040c4b3119bbe532e5b0732286f805445375489fceaec1f48306068ee3b/smmap-5.0.2.tar.gz", hash = "sha256:26ea65a03958fa0c8a1c7e8c7a58fdc77221b8910f6be2131affade476898ad5", size = 22329, upload-time = "2025-01-02T07:14:40.909Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/04/be/d09147ad1ec7934636ad912901c5fd7667e1c858e19d355237db0d0cd5e4/smmap-5.0.2-py3-none-any.whl", hash = "sha256:b30115f0def7d7531d22a0fb6502488d879e75b260a9db4d0819cfb25403af5e", size = 24303, upload-time = "2025-01-02T07:14:38.724Z" }, +] + +[[package]] +name = "sniffio" +version = "1.3.1" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/a2/87/a6771e1546d97e7e041b6ae58d80074f81b7d5121207425c964ddf5cfdbd/sniffio-1.3.1.tar.gz", hash = "sha256:f4324edc670a0f49750a81b895f35c3adb843cca46f0530f79fc1babb23789dc", size = 20372, upload-time = "2024-02-25T23:20:04.057Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/e9/44/75a9c9421471a6c4805dbf2356f7c181a29c1879239abab1ea2cc8f38b40/sniffio-1.3.1-py3-none-any.whl", hash = "sha256:2f6da418d1f1e0fddd844478f41680e794e6051915791a034ff65e5f100525a2", size = 10235, upload-time = "2024-02-25T23:20:01.196Z" }, +] + +[[package]] +name = "snowballstemmer" +version = "3.0.1" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/75/a7/9810d872919697c9d01295633f5d574fb416d47e535f258272ca1f01f447/snowballstemmer-3.0.1.tar.gz", hash = "sha256:6d5eeeec8e9f84d4d56b847692bacf79bc2c8e90c7f80ca4444ff8b6f2e52895", size = 105575, upload-time = "2025-05-09T16:34:51.843Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/c8/78/3565d011c61f5a43488987ee32b6f3f656e7f107ac2782dd57bdd7d91d9a/snowballstemmer-3.0.1-py3-none-any.whl", hash = "sha256:6cd7b3897da8d6c9ffb968a6781fa6532dce9c3618a4b127d920dab764a19064", size = 103274, upload-time = "2025-05-09T16:34:50.371Z" }, +] + +[[package]] +name = "soupsieve" +version = "2.7" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/3f/f4/4a80cd6ef364b2e8b65b15816a843c0980f7a5a2b4dc701fc574952aa19f/soupsieve-2.7.tar.gz", hash = "sha256:ad282f9b6926286d2ead4750552c8a6142bc4c783fd66b0293547c8fe6ae126a", size = 103418, upload-time = "2025-04-20T18:50:08.518Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/e7/9c/0e6afc12c269578be5c0c1c9f4b49a8d32770a080260c333ac04cc1c832d/soupsieve-2.7-py3-none-any.whl", hash = "sha256:6e60cc5c1ffaf1cebcc12e8188320b72071e922c2e897f737cadce79ad5d30c4", size = 36677, upload-time = "2025-04-20T18:50:07.196Z" }, +] + +[[package]] +name = "stack-data" +version = "0.6.3" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "asttokens", marker = "sys_platform == 'linux'" }, + { name = "executing", version = "1.2.0", source = { registry = "https://pypi.org/simple" }, marker = "(sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base') or (sys_platform == 'linux' and extra == 'group-9-notebooks-jupyter-datascience-image') or (sys_platform == 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (sys_platform == 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (sys_platform == 'linux' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (sys_platform == 'linux' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (sys_platform == 'linux' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai')" }, + { name = "executing", version = "2.2.0", source = { registry = "https://pypi.org/simple" }, marker = "(sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-trustyai') or (sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-elyra-trustyai') or (sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-elyra-trustyai') or (sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-trustyai-image') or (sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image') or (sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-trustyai')" }, + { name = "pure-eval", marker = "sys_platform == 'linux'" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/28/e3/55dcc2cfbc3ca9c29519eb6884dd1415ecb53b0e934862d3559ddcb7e20b/stack_data-0.6.3.tar.gz", hash = "sha256:836a778de4fec4dcd1dcd89ed8abff8a221f58308462e1c4aa2a3cf30148f0b9", size = 44707, upload-time = "2023-09-30T13:58:05.479Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/f1/7b/ce1eafaf1a76852e2ec9b22edecf1daa58175c090266e9f6c64afcd81d91/stack_data-0.6.3-py3-none-any.whl", hash = "sha256:d5558e0c25a4cb0853cddad3d77da9891a08cb85dd9f9f91b9f8cd66e511e695", size = 24521, upload-time = "2023-09-30T13:58:03.53Z" }, +] + +[[package]] +name = "sympy" +version = "1.13.1" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "mpmath", marker = "sys_platform == 'linux'" }, ] -sdist = { url = "https://files.pythonhosted.org/packages/a7/22/27582568be639dfe22ddb3902225f91f2f17ceff88ce80e4db396c8986da/PyNaCl-1.5.0.tar.gz", hash = "sha256:8ac7448f09ab85811607bdd21ec2464495ac8b7c66d146bf545b0f08fb9220ba", size = 3392854 } +sdist = { url = "https://files.pythonhosted.org/packages/ca/99/5a5b6f19ff9f083671ddf7b9632028436167cd3d33e11015754e41b249a4/sympy-1.13.1.tar.gz", hash = "sha256:9cebf7e04ff162015ce31c9c6c9144daa34a93bd082f54fd8f12deca4f47515f", size = 7533040, upload-time = "2024-07-19T09:26:51.238Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/ce/75/0b8ede18506041c0bf23ac4d8e2971b4161cd6ce630b177d0a08eb0d8857/PyNaCl-1.5.0-cp36-abi3-macosx_10_10_universal2.whl", hash = "sha256:401002a4aaa07c9414132aaed7f6836ff98f59277a234704ff66878c2ee4a0d1", size = 349920 }, - { url = "https://files.pythonhosted.org/packages/59/bb/fddf10acd09637327a97ef89d2a9d621328850a72f1fdc8c08bdf72e385f/PyNaCl-1.5.0-cp36-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.manylinux_2_24_aarch64.whl", hash = "sha256:52cb72a79269189d4e0dc537556f4740f7f0a9ec41c1322598799b0bdad4ef92", size = 601722 }, - { url = "https://files.pythonhosted.org/packages/5d/70/87a065c37cca41a75f2ce113a5a2c2aa7533be648b184ade58971b5f7ccc/PyNaCl-1.5.0-cp36-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a36d4a9dda1f19ce6e03c9a784a2921a4b726b02e1c736600ca9c22029474394", size = 680087 }, - { url = "https://files.pythonhosted.org/packages/ee/87/f1bb6a595f14a327e8285b9eb54d41fef76c585a0edef0a45f6fc95de125/PyNaCl-1.5.0-cp36-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_24_x86_64.whl", hash = "sha256:0c84947a22519e013607c9be43706dd42513f9e6ae5d39d3613ca1e142fba44d", size = 856678 }, - { url = "https://files.pythonhosted.org/packages/66/28/ca86676b69bf9f90e710571b67450508484388bfce09acf8a46f0b8c785f/PyNaCl-1.5.0-cp36-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:06b8f6fa7f5de8d5d2f7573fe8c863c051225a27b61e6860fd047b1775807858", size = 1133660 }, - { url = "https://files.pythonhosted.org/packages/3d/85/c262db650e86812585e2bc59e497a8f59948a005325a11bbbc9ecd3fe26b/PyNaCl-1.5.0-cp36-abi3-musllinux_1_1_aarch64.whl", hash = "sha256:a422368fc821589c228f4c49438a368831cb5bbc0eab5ebe1d7fac9dded6567b", size = 663824 }, - { url = "https://files.pythonhosted.org/packages/fd/1a/cc308a884bd299b651f1633acb978e8596c71c33ca85e9dc9fa33a5399b9/PyNaCl-1.5.0-cp36-abi3-musllinux_1_1_x86_64.whl", hash = "sha256:61f642bf2378713e2c2e1de73444a3778e5f0a38be6fee0fe532fe30060282ff", size = 1117912 }, + { url = "https://files.pythonhosted.org/packages/b2/fe/81695a1aa331a842b582453b605175f419fe8540355886031328089d840a/sympy-1.13.1-py3-none-any.whl", hash = "sha256:db36cdc64bf61b9b24578b6f7bab1ecdd2452cf008f34faa33776680c26d66f8", size = 6189177, upload-time = "2024-07-19T09:26:48.863Z" }, ] [[package]] -name = "pyright" -version = "1.1.398" +name = "tabulate" +version = "0.9.0" source = { registry = "https://pypi.org/simple" } -dependencies = [ - { name = "nodeenv", marker = "sys_platform == 'darwin' or sys_platform == 'linux'" }, - { name = "typing-extensions", marker = "sys_platform == 'darwin' or sys_platform == 'linux'" }, +sdist = { url = "https://files.pythonhosted.org/packages/ec/fe/802052aecb21e3797b8f7902564ab6ea0d60ff8ca23952079064155d1ae1/tabulate-0.9.0.tar.gz", hash = "sha256:0095b12bf5966de529c0feb1fa08671671b3368eec77d7ef7ab114be2c068b3c", size = 81090, upload-time = "2022-10-06T17:21:48.54Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/40/44/4a5f08c96eb108af5cb50b41f76142f0afa346dfa99d5296fe7202a11854/tabulate-0.9.0-py3-none-any.whl", hash = "sha256:024ca478df22e9340661486f85298cff5f6dcdba14f3813e8830015b9ed1948f", size = 35252, upload-time = "2022-10-06T17:21:44.262Z" }, ] -sdist = { url = "https://files.pythonhosted.org/packages/24/d6/48740f1d029e9fc4194880d1ad03dcf0ba3a8f802e0e166b8f63350b3584/pyright-1.1.398.tar.gz", hash = "sha256:357a13edd9be8082dc73be51190913e475fa41a6efb6ec0d4b7aab3bc11638d8", size = 3892675 } + +[[package]] +name = "tenacity" +version = "9.1.2" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/0a/d4/2b0cd0fe285e14b36db076e78c93766ff1d529d70408bd1d2a5a84f1d929/tenacity-9.1.2.tar.gz", hash = "sha256:1169d376c297e7de388d18b4481760d478b0e99a777cad3a9c86e556f4b697cb", size = 48036, upload-time = "2025-04-02T08:25:09.966Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/58/e0/5283593f61b3c525d6d7e94cfb6b3ded20b3df66e953acaf7bb4f23b3f6e/pyright-1.1.398-py3-none-any.whl", hash = "sha256:0a70bfd007d9ea7de1cf9740e1ad1a40a122592cfe22a3f6791b06162ad08753", size = 5780235 }, + { url = "https://files.pythonhosted.org/packages/e5/30/643397144bfbfec6f6ef821f36f33e57d35946c44a2352d3c9f0ae847619/tenacity-9.1.2-py3-none-any.whl", hash = "sha256:f77bf36710d8b73a50b2dd155c97b870017ad21afe6ab300326b0371b3b05138", size = 28248, upload-time = "2025-04-02T08:25:07.678Z" }, ] [[package]] -name = "pytest" -version = "8.3.4" +name = "tensorboard" +version = "2.14.1" source = { registry = "https://pypi.org/simple" } +resolution-markers = [ + "python_full_version >= '3.12' and sys_platform == 'linux'", + "python_full_version < '3.12' and sys_platform == 'linux'", +] dependencies = [ - { name = "iniconfig", marker = "sys_platform == 'darwin' or sys_platform == 'linux'" }, - { name = "packaging", marker = "sys_platform == 'darwin' or sys_platform == 'linux'" }, - { name = "pluggy", marker = "sys_platform == 'darwin' or sys_platform == 'linux'" }, + { name = "absl-py", marker = "sys_platform == 'linux'" }, + { name = "google-auth", marker = "sys_platform == 'linux'" }, + { name = "google-auth-oauthlib", marker = "sys_platform == 'linux'" }, + { name = "grpcio", marker = "sys_platform == 'linux'" }, + { name = "markdown", marker = "sys_platform == 'linux'" }, + { name = "numpy", version = "1.24.4", source = { registry = "https://pypi.org/simple" }, marker = "(sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-trustyai') or (sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai')" }, + { name = "numpy", version = "1.26.4", source = { registry = "https://pypi.org/simple" }, marker = "(sys_platform == 'linux' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-trustyai') or (sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai')" }, + { name = "numpy", version = "2.2.6", source = { registry = "https://pypi.org/simple" }, marker = "(sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-trustyai') or (sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai')" }, + { name = "protobuf", marker = "sys_platform == 'linux'" }, + { name = "requests", marker = "sys_platform == 'linux'" }, + { name = "setuptools", marker = "sys_platform == 'linux'" }, + { name = "six", marker = "sys_platform == 'linux'" }, + { name = "tensorboard-data-server", marker = "sys_platform == 'linux'" }, + { name = "werkzeug", marker = "sys_platform == 'linux'" }, ] -sdist = { url = "https://files.pythonhosted.org/packages/05/35/30e0d83068951d90a01852cb1cef56e5d8a09d20c7f511634cc2f7e0372a/pytest-8.3.4.tar.gz", hash = "sha256:965370d062bce11e73868e0335abac31b4d3de0e82f4007408d242b4f8610761", size = 1445919 } wheels = [ - { url = "https://files.pythonhosted.org/packages/11/92/76a1c94d3afee238333bc0a42b82935dd8f9cf8ce9e336ff87ee14d9e1cf/pytest-8.3.4-py3-none-any.whl", hash = "sha256:50e16d954148559c9a74109af1eaf0c945ba2d8f30f0a3d3335edde19788b6f6", size = 343083 }, + { url = "https://files.pythonhosted.org/packages/73/a2/66ed644f6ed1562e0285fcd959af17670ea313c8f331c46f79ee77187eb9/tensorboard-2.14.1-py3-none-any.whl", hash = "sha256:3db108fb58f023b6439880e177743c5f1e703e9eeb5fb7d597871f949f85fd58", size = 5508920, upload-time = "2023-09-27T23:37:16.71Z" }, ] [[package]] -name = "pytest-cov" -version = "6.0.0" +name = "tensorboard" +version = "2.18.0" source = { registry = "https://pypi.org/simple" } +resolution-markers = [ + "python_full_version >= '3.12' and sys_platform == 'linux'", + "python_full_version < '3.12' and sys_platform == 'linux'", +] dependencies = [ - { name = "coverage", marker = "sys_platform == 'darwin' or sys_platform == 'linux'" }, - { name = "pytest", marker = "sys_platform == 'darwin' or sys_platform == 'linux'" }, + { name = "absl-py", marker = "sys_platform == 'linux'" }, + { name = "grpcio", marker = "sys_platform == 'linux'" }, + { name = "markdown", marker = "sys_platform == 'linux'" }, + { name = "numpy", version = "1.24.4", source = { registry = "https://pypi.org/simple" }, marker = "(sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-pytorchrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-tensorflowcuda') or (extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai')" }, + { name = "numpy", version = "1.26.4", source = { registry = "https://pypi.org/simple" }, marker = "(sys_platform == 'linux' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-pytorchrocm') or (sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform == 'linux' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-trustyai')" }, + { name = "numpy", version = "2.2.6", source = { registry = "https://pypi.org/simple" }, marker = "(sys_platform == 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-trustyai') or (sys_platform == 'linux' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-pytorchrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-trustyai') or (sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-pytorchrocm') or (sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-pytorchrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-trustyai') or (sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-pytorchrocm') or (sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-tensorflowcuda') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai')" }, + { name = "packaging", marker = "sys_platform == 'linux'" }, + { name = "protobuf", marker = "sys_platform == 'linux'" }, + { name = "setuptools", marker = "sys_platform == 'linux'" }, + { name = "six", marker = "sys_platform == 'linux'" }, + { name = "tensorboard-data-server", marker = "sys_platform == 'linux'" }, + { name = "werkzeug", marker = "sys_platform == 'linux'" }, ] -sdist = { url = "https://files.pythonhosted.org/packages/be/45/9b538de8cef30e17c7b45ef42f538a94889ed6a16f2387a6c89e73220651/pytest-cov-6.0.0.tar.gz", hash = "sha256:fde0b595ca248bb8e2d76f020b465f3b107c9632e6a1d1705f17834c89dcadc0", size = 66945 } wheels = [ - { url = "https://files.pythonhosted.org/packages/36/3b/48e79f2cd6a61dbbd4807b4ed46cb564b4fd50a76166b1c4ea5c1d9e2371/pytest_cov-6.0.0-py3-none-any.whl", hash = "sha256:eee6f1b9e61008bd34975a4d5bab25801eb31898b032dd55addc93e96fcaaa35", size = 22949 }, + { url = "https://files.pythonhosted.org/packages/b1/de/021c1d407befb505791764ad2cbd56ceaaa53a746baed01d2e2143f05f18/tensorboard-2.18.0-py3-none-any.whl", hash = "sha256:107ca4821745f73e2aefa02c50ff70a9b694f39f790b11e6f682f7d326745eab", size = 5503036, upload-time = "2024-09-25T21:21:50.169Z" }, ] [[package]] -name = "pytest-subtests" -version = "0.14.1" +name = "tensorboard" +version = "2.19.0" source = { registry = "https://pypi.org/simple" } +resolution-markers = [ + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", +] dependencies = [ - { name = "attrs", marker = "sys_platform == 'darwin' or sys_platform == 'linux'" }, - { name = "pytest", marker = "sys_platform == 'darwin' or sys_platform == 'linux'" }, + { name = "absl-py", marker = "sys_platform == 'linux'" }, + { name = "grpcio", marker = "sys_platform == 'linux'" }, + { name = "markdown", marker = "sys_platform == 'linux'" }, + { name = "numpy", version = "1.24.4", source = { registry = "https://pypi.org/simple" }, marker = "(sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai')" }, + { name = "numpy", version = "1.26.4", source = { registry = "https://pypi.org/simple" }, marker = "(sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai')" }, + { name = "numpy", version = "2.2.6", source = { registry = "https://pypi.org/simple" }, marker = "(sys_platform == 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (sys_platform == 'linux' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-pytorchcuda') or (sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-pytorchcuda') or (sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-pytorchcuda') or (sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-pytorchcuda') or (sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai')" }, + { name = "packaging", marker = "sys_platform == 'linux'" }, + { name = "protobuf", marker = "sys_platform == 'linux'" }, + { name = "setuptools", marker = "sys_platform == 'linux'" }, + { name = "six", marker = "sys_platform == 'linux'" }, + { name = "tensorboard-data-server", marker = "sys_platform == 'linux'" }, + { name = "werkzeug", marker = "sys_platform == 'linux'" }, ] -sdist = { url = "https://files.pythonhosted.org/packages/c0/4c/ba9eab21a2250c2d46c06c0e3cd316850fde9a90da0ac8d0202f074c6817/pytest_subtests-0.14.1.tar.gz", hash = "sha256:350c00adc36c3aff676a66135c81aed9e2182e15f6c3ec8721366918bbbf7580", size = 17632 } wheels = [ - { url = "https://files.pythonhosted.org/packages/a9/b7/7ca948d35642ae72500efda6ba6fa61dcb6683feb596d19c4747c63c0789/pytest_subtests-0.14.1-py3-none-any.whl", hash = "sha256:e92a780d98b43118c28a16044ad9b841727bd7cb6a417073b38fd2d7ccdf052d", size = 8833 }, + { url = "https://files.pythonhosted.org/packages/5d/12/4f70e8e2ba0dbe72ea978429d8530b0333f0ed2140cc571a48802878ef99/tensorboard-2.19.0-py3-none-any.whl", hash = "sha256:5e71b98663a641a7ce8a6e70b0be8e1a4c0c45d48760b076383ac4755c35b9a0", size = 5503412, upload-time = "2025-02-12T08:17:27.21Z" }, ] [[package]] -name = "python-benedict" -version = "0.34.1" +name = "tensorboard-data-server" +version = "0.7.2" +source = { registry = "https://pypi.org/simple" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/7a/13/e503968fefabd4c6b2650af21e110aa8466fe21432cd7c43a84577a89438/tensorboard_data_server-0.7.2-py3-none-any.whl", hash = "sha256:7e0610d205889588983836ec05dc098e80f97b7e7bbff7e994ebb78f578d0ddb", size = 2356, upload-time = "2023-10-23T21:23:32.16Z" }, + { url = "https://files.pythonhosted.org/packages/b7/85/dabeaf902892922777492e1d253bb7e1264cadce3cea932f7ff599e53fea/tensorboard_data_server-0.7.2-py3-none-macosx_10_9_x86_64.whl", hash = "sha256:9fe5d24221b29625dbc7328b0436ca7fc1c23de4acf4d272f1180856e32f9f60", size = 4823598, upload-time = "2023-10-23T21:23:33.714Z" }, + { url = "https://files.pythonhosted.org/packages/73/c6/825dab04195756cf8ff2e12698f22513b3db2f64925bdd41671bfb33aaa5/tensorboard_data_server-0.7.2-py3-none-manylinux_2_31_x86_64.whl", hash = "sha256:ef687163c24185ae9754ed5650eb5bc4d84ff257aabdc33f0cc6f74d8ba54530", size = 6590363, upload-time = "2023-10-23T21:23:35.583Z" }, +] + +[[package]] +name = "tensorflow" +version = "2.18.1" source = { registry = "https://pypi.org/simple" } dependencies = [ - { name = "python-fsutil", marker = "sys_platform == 'darwin' or sys_platform == 'linux'" }, - { name = "python-slugify", marker = "sys_platform == 'darwin' or sys_platform == 'linux'" }, - { name = "requests", marker = "sys_platform == 'darwin' or sys_platform == 'linux'" }, + { name = "absl-py", marker = "sys_platform == 'linux'" }, + { name = "astunparse", marker = "sys_platform == 'linux'" }, + { name = "flatbuffers", marker = "sys_platform == 'linux'" }, + { name = "gast", marker = "sys_platform == 'linux'" }, + { name = "google-pasta", marker = "sys_platform == 'linux'" }, + { name = "grpcio", marker = "sys_platform == 'linux'" }, + { name = "h5py", marker = "sys_platform == 'linux'" }, + { name = "keras", version = "3.10.0", source = { registry = "https://pypi.org/simple" }, marker = "sys_platform == 'linux'" }, + { name = "libclang", marker = "sys_platform == 'linux'" }, + { name = "ml-dtypes", version = "0.5.1", source = { registry = "https://pypi.org/simple" }, marker = "sys_platform == 'linux'" }, + { name = "numpy", version = "1.26.4", source = { registry = "https://pypi.org/simple" }, marker = "sys_platform == 'linux'" }, + { name = "opt-einsum", marker = "sys_platform == 'linux'" }, + { name = "packaging", marker = "sys_platform == 'linux'" }, + { name = "protobuf", marker = "sys_platform == 'linux'" }, + { name = "requests", marker = "sys_platform == 'linux'" }, + { name = "setuptools", marker = "sys_platform == 'linux'" }, + { name = "six", marker = "sys_platform == 'linux'" }, + { name = "tensorboard", version = "2.18.0", source = { registry = "https://pypi.org/simple" }, marker = "sys_platform == 'linux'" }, + { name = "tensorflow-io-gcs-filesystem", marker = "python_full_version < '3.12' and sys_platform == 'linux'" }, + { name = "termcolor", marker = "sys_platform == 'linux'" }, + { name = "typing-extensions", marker = "sys_platform == 'linux'" }, + { name = "wrapt", version = "1.17.2", source = { registry = "https://pypi.org/simple" }, marker = "sys_platform == 'linux'" }, ] -sdist = { url = "https://files.pythonhosted.org/packages/b3/a8/744dce47aeba978a516f13c0d728fa1236217fa9e75e2619891df8100e85/python_benedict-0.34.1.tar.gz", hash = "sha256:0a81784c826c8983c485bb647ed5e6c8fad139c3921ea1844b21e41da0ff0dc0", size = 53340 } wheels = [ - { url = "https://files.pythonhosted.org/packages/94/65/c59fb6eec8859047394ccd73eaf1623ce9fd82c48d880d9a072045669bc5/python_benedict-0.34.1-py3-none-any.whl", hash = "sha256:f09711ca2d8e716ca40440f1e26dfa3ccff15e08f1baa88de594fbba799cf87a", size = 51308 }, + { url = "https://files.pythonhosted.org/packages/a1/88/57e2acd11a2587cc5c0a6612a389a57f3bda3cd60d132934cb7a9bb00a81/tensorflow-2.18.1-cp311-cp311-macosx_12_0_arm64.whl", hash = "sha256:661029cd769b311db910b79a3a6ef50a5a61ecc947172228c777a49989722508", size = 239549037, upload-time = "2025-03-12T00:12:38.202Z" }, + { url = "https://files.pythonhosted.org/packages/c8/b3/902588dcffbc0603893f1df482840ff9c596430155d62e159bc8fc155230/tensorflow-2.18.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8a6485edd2148f70d011dbd1d8dc2c775e91774a5a159466e83d0d1f21580944", size = 231937898, upload-time = "2025-03-12T00:12:47.544Z" }, + { url = "https://files.pythonhosted.org/packages/45/c6/05d862ebeaaf63343dffc4f97dab62ac493e8c2bbc6b1a256199bcc78ed4/tensorflow-2.18.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c9f87e5d2a680a4595f5dc30daf6bbaec9d4129b46d7ef1b2af63c46ac7d2828", size = 615510377, upload-time = "2025-03-12T00:13:03.792Z" }, + { url = "https://files.pythonhosted.org/packages/28/2a/5f5ade4be81e521a16e143234747570ffd0d1a90e001ecc2688aa54bb419/tensorflow-2.18.1-cp311-cp311-win_amd64.whl", hash = "sha256:99223d0dde08aec4ceebb3bf0f80da7802e18462dab0d5048225925c064d2af7", size = 369183850, upload-time = "2025-03-12T00:13:24.786Z" }, + { url = "https://files.pythonhosted.org/packages/67/8c/1cad54f8634897ad9421de8f558df9aa63d3f2747eb803ce5dbb2db1ef5b/tensorflow-2.18.1-cp312-cp312-macosx_12_0_arm64.whl", hash = "sha256:98afa9c7f21481cdc6ccd09507a7878d533150fbb001840cc145e2132eb40942", size = 239622377, upload-time = "2025-03-12T00:13:36.89Z" }, + { url = "https://files.pythonhosted.org/packages/6c/c2/35a3542a91f4ffd4cf01e72d7f0fb59596cd5f467ff64878b0caef8e0f31/tensorflow-2.18.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1ba52b9c06ab8102b31e50acfaf56899b923171e603c8942f2bfeb181d6bb59e", size = 231996787, upload-time = "2025-03-12T00:13:47.54Z" }, + { url = "https://files.pythonhosted.org/packages/64/42/812539a8878c242eb0bacf106f5ea8936c2cc4d7f663868bd872a79772ac/tensorflow-2.18.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:442d2a774811789a8ad948e7286cb950fe3d87d3754e8cc6449d53b03dbfdaa6", size = 615623178, upload-time = "2025-03-12T00:14:03.541Z" }, + { url = "https://files.pythonhosted.org/packages/20/28/9c5e935b76eebdf46df524980d49700a9c9af56abc8c62bfd93f57709563/tensorflow-2.18.1-cp312-cp312-win_amd64.whl", hash = "sha256:210baf6d421f3e044b6e09efd04494a33b75334922fe6cf11970e2885172620a", size = 369234070, upload-time = "2025-03-12T00:14:23.423Z" }, +] + +[package.optional-dependencies] +and-cuda = [ + { name = "nvidia-cublas-cu12", version = "12.5.3.2", source = { registry = "https://pypi.org/simple" }, marker = "sys_platform == 'linux'" }, + { name = "nvidia-cuda-cupti-cu12", version = "12.5.82", source = { registry = "https://pypi.org/simple" }, marker = "sys_platform == 'linux'" }, + { name = "nvidia-cuda-nvcc-cu12", marker = "sys_platform == 'linux'" }, + { name = "nvidia-cuda-nvrtc-cu12", version = "12.5.82", source = { registry = "https://pypi.org/simple" }, marker = "sys_platform == 'linux'" }, + { name = "nvidia-cuda-runtime-cu12", version = "12.5.82", source = { registry = "https://pypi.org/simple" }, marker = "sys_platform == 'linux'" }, + { name = "nvidia-cudnn-cu12", version = "9.3.0.75", source = { registry = "https://pypi.org/simple" }, marker = "sys_platform == 'linux'" }, + { name = "nvidia-cufft-cu12", version = "11.2.3.61", source = { registry = "https://pypi.org/simple" }, marker = "sys_platform == 'linux'" }, + { name = "nvidia-curand-cu12", version = "10.3.6.82", source = { registry = "https://pypi.org/simple" }, marker = "sys_platform == 'linux'" }, + { name = "nvidia-cusolver-cu12", version = "11.6.3.83", source = { registry = "https://pypi.org/simple" }, marker = "sys_platform == 'linux'" }, + { name = "nvidia-cusparse-cu12", version = "12.5.1.3", source = { registry = "https://pypi.org/simple" }, marker = "sys_platform == 'linux'" }, + { name = "nvidia-nccl-cu12", marker = "sys_platform == 'linux'" }, + { name = "nvidia-nvjitlink-cu12", version = "12.5.82", source = { registry = "https://pypi.org/simple" }, marker = "sys_platform == 'linux'" }, ] [[package]] -name = "python-dateutil" -version = "2.9.0.post0" +name = "tensorflow-cpu-aws" +version = "2.14.0" source = { registry = "https://pypi.org/simple" } dependencies = [ - { name = "six", marker = "sys_platform == 'darwin' or sys_platform == 'linux'" }, + { name = "absl-py", marker = "sys_platform == 'linux'" }, + { name = "astunparse", marker = "sys_platform == 'linux'" }, + { name = "flatbuffers", marker = "sys_platform == 'linux'" }, + { name = "gast", marker = "sys_platform == 'linux'" }, + { name = "google-pasta", marker = "sys_platform == 'linux'" }, + { name = "grpcio", marker = "sys_platform == 'linux'" }, + { name = "h5py", marker = "sys_platform == 'linux'" }, + { name = "keras", version = "2.14.0", source = { registry = "https://pypi.org/simple" }, marker = "sys_platform == 'linux'" }, + { name = "libclang", marker = "sys_platform == 'linux'" }, + { name = "ml-dtypes", version = "0.2.0", source = { registry = "https://pypi.org/simple" }, marker = "sys_platform == 'linux'" }, + { name = "numpy", version = "1.24.4", source = { registry = "https://pypi.org/simple" }, marker = "(sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-trustyai') or (sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai')" }, + { name = "numpy", version = "1.26.4", source = { registry = "https://pypi.org/simple" }, marker = "(sys_platform == 'linux' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-trustyai') or (sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai')" }, + { name = "numpy", version = "2.2.6", source = { registry = "https://pypi.org/simple" }, marker = "(sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-trustyai') or (sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai')" }, + { name = "opt-einsum", marker = "sys_platform == 'linux'" }, + { name = "packaging", marker = "sys_platform == 'linux'" }, + { name = "protobuf", marker = "sys_platform == 'linux'" }, + { name = "setuptools", marker = "sys_platform == 'linux'" }, + { name = "six", marker = "sys_platform == 'linux'" }, + { name = "tensorboard", version = "2.14.1", source = { registry = "https://pypi.org/simple" }, marker = "sys_platform == 'linux'" }, + { name = "tensorflow-estimator", marker = "sys_platform == 'linux'" }, + { name = "tensorflow-io-gcs-filesystem", marker = "sys_platform == 'linux'" }, + { name = "termcolor", marker = "sys_platform == 'linux'" }, + { name = "typing-extensions", marker = "sys_platform == 'linux'" }, + { name = "wrapt", version = "1.14.1", source = { registry = "https://pypi.org/simple" }, marker = "sys_platform == 'linux'" }, ] -sdist = { url = "https://files.pythonhosted.org/packages/66/c0/0c8b6ad9f17a802ee498c46e004a0eb49bc148f2fd230864601a86dcf6db/python-dateutil-2.9.0.post0.tar.gz", hash = "sha256:37dd54208da7e1cd875388217d5e00ebd4179249f90fb72437e91a35459a0ad3", size = 342432 } wheels = [ - { url = "https://files.pythonhosted.org/packages/ec/57/56b9bcc3c9c6a792fcbaf139543cee77261f3651ca9da0c93f5c1221264b/python_dateutil-2.9.0.post0-py2.py3-none-any.whl", hash = "sha256:a8b2bc7bffae282281c8140a97d3aa9c14da0b136dfe83f850eea9a5f7470427", size = 229892 }, + { url = "https://files.pythonhosted.org/packages/17/40/33a12961450a0ff8d4e95a9039f11154b207d51f182b3bca7565137c2313/tensorflow_cpu_aws-2.14.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:497b400494fa693e8037fa0e2892714aecc257a5752a878b210b3a512b66668c", size = 262873686, upload-time = "2023-09-28T19:46:15.602Z" }, ] [[package]] -name = "python-dotenv" -version = "1.0.1" +name = "tensorflow-estimator" +version = "2.14.0" source = { registry = "https://pypi.org/simple" } -sdist = { url = "https://files.pythonhosted.org/packages/bc/57/e84d88dfe0aec03b7a2d4327012c1627ab5f03652216c63d49846d7a6c58/python-dotenv-1.0.1.tar.gz", hash = "sha256:e324ee90a023d808f1959c46bcbc04446a10ced277783dc6ee09987c37ec10ca", size = 39115 } wheels = [ - { url = "https://files.pythonhosted.org/packages/6a/3e/b68c118422ec867fa7ab88444e1274aa40681c606d59ac27de5a5588f082/python_dotenv-1.0.1-py3-none-any.whl", hash = "sha256:f7b63ef50f1b690dddf550d03497b66d609393b40b564ed0d674909a68ebf16a", size = 19863 }, + { url = "https://files.pythonhosted.org/packages/d1/da/4f264c196325bb6e37a6285caec5b12a03def489b57cc1fdac02bb6272cd/tensorflow_estimator-2.14.0-py2.py3-none-any.whl", hash = "sha256:820bf57c24aa631abb1bbe4371739ed77edb11361d61381fd8e790115ac0fd57", size = 440664, upload-time = "2023-09-11T18:41:50.481Z" }, ] [[package]] -name = "python-fsutil" -version = "0.15.0" +name = "tensorflow-io-gcs-filesystem" +version = "0.37.1" source = { registry = "https://pypi.org/simple" } -sdist = { url = "https://files.pythonhosted.org/packages/f9/4a/494de3f8b079f077d687f7b3e32b963f7613eaae2d7b5c1be34d7eafd19a/python_fsutil-0.15.0.tar.gz", hash = "sha256:b51d8ab7ee218314480ea251fff7fef513be4fbccfe72a5af4ff2954f8a4a2c4", size = 29669 } wheels = [ - { url = "https://files.pythonhosted.org/packages/33/de/fc2c3fa9d1f29c017c8eba2448efe86495b762111cf613a4c6d860158970/python_fsutil-0.15.0-py3-none-any.whl", hash = "sha256:8ae31def522916e35caf67723b8526fe6e5fcc1e160ea2dc23c845567708ca6e", size = 20915 }, + { 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" }, + { url = "https://files.pythonhosted.org/packages/66/7f/e36ae148c2f03d61ca1bff24bc13a0fef6d6825c966abef73fc6f880a23b/tensorflow_io_gcs_filesystem-0.37.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ee7c8ee5fe2fd8cb6392669ef16e71841133041fee8a330eff519ad9b36e4556", size = 5085736, upload-time = "2024-07-01T23:44:28.618Z" }, + { url = "https://files.pythonhosted.org/packages/70/83/4422804257fe2942ae0af4ea5bcc9df59cb6cb1bd092202ef240751d16aa/tensorflow_io_gcs_filesystem-0.37.1-cp312-cp312-macosx_10_14_x86_64.whl", hash = "sha256:ffebb6666a7bfc28005f4fbbb111a455b5e7d6cd3b12752b7050863ecb27d5cc", size = 2470224, upload-time = "2024-07-01T23:44:30.232Z" }, + { url = "https://files.pythonhosted.org/packages/43/9b/be27588352d7bd971696874db92d370f578715c17c0ccb27e4b13e16751e/tensorflow_io_gcs_filesystem-0.37.1-cp312-cp312-macosx_12_0_arm64.whl", hash = "sha256:fe8dcc6d222258a080ac3dfcaaaa347325ce36a7a046277f6b3e19abc1efb3c5", size = 3479614, upload-time = "2024-07-01T23:44:32.316Z" }, + { url = "https://files.pythonhosted.org/packages/d3/46/962f47af08bd39fc9feb280d3192825431a91a078c856d17a78ae4884eb1/tensorflow_io_gcs_filesystem-0.37.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:fbb33f1745f218464a59cecd9a18e32ca927b0f4d77abd8f8671b645cc1a182f", size = 4842077, upload-time = "2024-07-01T23:44:33.86Z" }, + { url = "https://files.pythonhosted.org/packages/f0/9b/790d290c232bce9b691391cf16e95a96e469669c56abfb1d9d0f35fa437c/tensorflow_io_gcs_filesystem-0.37.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:286389a203a5aee1a4fa2e53718c661091aa5fea797ff4fa6715ab8436b02e6c", size = 5085733, upload-time = "2024-07-01T23:44:36.663Z" }, ] [[package]] -name = "python-rrmngmnt" -version = "0.1.32" +name = "tensorflow-rocm" +version = "2.14.0.600" source = { registry = "https://pypi.org/simple" } dependencies = [ - { name = "netaddr", marker = "sys_platform == 'darwin' or sys_platform == 'linux'" }, - { name = "paramiko", marker = "sys_platform == 'darwin' or sys_platform == 'linux'" }, - { name = "pbr", marker = "sys_platform == 'darwin' or sys_platform == 'linux'" }, - { name = "six", marker = "sys_platform == 'darwin' or sys_platform == 'linux'" }, + { name = "tensorflow-cpu-aws", marker = "sys_platform == 'linux'" }, +] +wheels = [ + { url = "https://files.pythonhosted.org/packages/fc/42/0e0b129a2b6ca22ad5c2cecd2e03fc1b3911914a75d2f38fc584e91aa71d/tensorflow_rocm-2.14.0.600-cp311-cp311-manylinux2014_x86_64.whl", hash = "sha256:c9f3e6f81ea916d8a7481a3d59240867b36ead2ff5474e5ba233b2b598baf7fe", size = 427111059, upload-time = "2024-01-10T14:33:54.623Z" }, ] -sdist = { url = "https://files.pythonhosted.org/packages/45/60/571982c7af8f5453b86d332041d58076642d26089ea1481ce54e8f7f1305/python-rrmngmnt-0.1.32.zip", hash = "sha256:0953f9e9e3911d4a310282513261ed7572fbc269f78c8e3d0680f84ba9955526", size = 84778 } [[package]] -name = "python-simple-logger" -version = "2.0.7" +name = "termcolor" +version = "2.3.0" source = { registry = "https://pypi.org/simple" } -dependencies = [ - { name = "colorlog", marker = "sys_platform == 'darwin' or sys_platform == 'linux'" }, +sdist = { url = "https://files.pythonhosted.org/packages/b8/85/147a0529b4e80b6b9d021ca8db3a820fcac53ec7374b87073d004aaf444c/termcolor-2.3.0.tar.gz", hash = "sha256:b5b08f68937f138fe92f6c089b99f1e2da0ae56c52b78bf7075fd95420fd9a5a", size = 12163, upload-time = "2023-04-23T19:45:24.004Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/67/e1/434566ffce04448192369c1a282931cf4ae593e91907558eaecd2e9f2801/termcolor-2.3.0-py3-none-any.whl", hash = "sha256:3afb05607b89aed0ffe25202399ee0867ad4d3cb4180d98aaf8eefa6a5f7d475", size = 6872, upload-time = "2023-04-23T19:45:22.671Z" }, ] -sdist = { url = "https://files.pythonhosted.org/packages/0c/45/c4098a105bb1b3151b82e4d364d58b4559e1f0bf994f0f72d9147d6a65d6/python_simple_logger-2.0.7.tar.gz", hash = "sha256:aae25a76ebd40e8a0bf96bcd001e5ae52190bc7bb467f1c549df3a65ceabaee8", size = 9412 } [[package]] -name = "python-slugify" -version = "8.0.4" +name = "terminado" +version = "0.18.1" source = { registry = "https://pypi.org/simple" } dependencies = [ - { name = "text-unidecode", marker = "sys_platform == 'darwin' or sys_platform == 'linux'" }, + { name = "ptyprocess", marker = "os_name != 'nt' and sys_platform == 'linux'" }, + { name = "tornado", marker = "sys_platform == 'linux'" }, ] -sdist = { url = "https://files.pythonhosted.org/packages/87/c7/5e1547c44e31da50a460df93af11a535ace568ef89d7a811069ead340c4a/python-slugify-8.0.4.tar.gz", hash = "sha256:59202371d1d05b54a9e7720c5e038f928f45daaffe41dd10822f3907b937c856", size = 10921 } +sdist = { url = "https://files.pythonhosted.org/packages/8a/11/965c6fd8e5cc254f1fe142d547387da17a8ebfd75a3455f637c663fb38a0/terminado-0.18.1.tar.gz", hash = "sha256:de09f2c4b85de4765f7714688fff57d3e75bad1f909b589fde880460c753fd2e", size = 32701, upload-time = "2024-03-12T14:34:39.026Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/a4/62/02da182e544a51a5c3ccf4b03ab79df279f9c60c5e82d5e8bec7ca26ac11/python_slugify-8.0.4-py2.py3-none-any.whl", hash = "sha256:276540b79961052b66b7d116620b36518847f52d5fd9e3a70164fc8c50faa6b8", size = 10051 }, + { url = "https://files.pythonhosted.org/packages/6a/9e/2064975477fdc887e47ad42157e214526dcad8f317a948dee17e1659a62f/terminado-0.18.1-py3-none-any.whl", hash = "sha256:a4468e1b37bb318f8a86514f65814e1afc977cf29b3992a4500d9dd305dcceb0", size = 14154, upload-time = "2024-03-12T14:34:36.569Z" }, ] [[package]] -name = "pyyaml" -version = "6.0.2" +name = "testcontainers" +version = "4.9.1" 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 } +dependencies = [ + { name = "docker", marker = "sys_platform == 'linux' or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai')" }, + { name = "python-dotenv", marker = "sys_platform == 'linux' or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai')" }, + { name = "typing-extensions", marker = "sys_platform == 'linux' or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai')" }, + { name = "urllib3", marker = "sys_platform == 'linux' or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai')" }, + { name = "wrapt", version = "1.14.1", source = { registry = "https://pypi.org/simple" }, marker = "(sys_platform == 'linux' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (sys_platform == 'linux' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai')" }, + { name = "wrapt", version = "1.17.2", source = { registry = "https://pypi.org/simple" }, marker = "(sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base') or (sys_platform == 'linux' and extra == 'group-9-notebooks-jupyter-datascience-image') or (sys_platform == 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (sys_platform == 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (sys_platform == 'linux' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (sys_platform == 'linux' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (sys_platform == 'linux' and extra == 'group-9-notebooks-pytorchcuda') or (sys_platform == 'linux' and extra == 'group-9-notebooks-pytorchrocm') or (sys_platform == 'linux' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-trustyai') or (sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-tensorflowrocm') or (sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-tensorflowrocm') or (sys_platform == 'linux' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-tensorflowrocm') or (sys_platform == 'linux' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-trustyai')" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/e6/be/32bcd4143bca261b70e02109d75c2dbb5eb3e47e72e99efac9ca6ae88f76/testcontainers-4.9.1.tar.gz", hash = "sha256:37fe9a222549ddb788463935965b16f91809e9a8d654f437d6a59eac9b77f76f", size = 62463, upload-time = "2025-01-21T20:16:33.101Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/86/0c/c581167fc46d6d6d7ddcfb8c843a4de25bdd27e4466938109ca68492292c/PyYAML-6.0.2-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:c70c95198c015b85feafc136515252a261a84561b7b1d51e3384e0655ddf25ab", size = 183873 }, - { url = "https://files.pythonhosted.org/packages/a8/0c/38374f5bb272c051e2a69281d71cba6fdb983413e6758b84482905e29a5d/PyYAML-6.0.2-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:ce826d6ef20b1bc864f0a68340c8b3287705cae2f8b4b1d932177dcc76721725", size = 173302 }, - { url = "https://files.pythonhosted.org/packages/c3/93/9916574aa8c00aa06bbac729972eb1071d002b8e158bd0e83a3b9a20a1f7/PyYAML-6.0.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1f71ea527786de97d1a0cc0eacd1defc0985dcf6b3f17bb77dcfc8c34bec4dc5", size = 739154 }, - { url = "https://files.pythonhosted.org/packages/95/0f/b8938f1cbd09739c6da569d172531567dbcc9789e0029aa070856f123984/PyYAML-6.0.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:9b22676e8097e9e22e36d6b7bda33190d0d400f345f23d4065d48f4ca7ae0425", size = 766223 }, - { url = "https://files.pythonhosted.org/packages/b9/2b/614b4752f2e127db5cc206abc23a8c19678e92b23c3db30fc86ab731d3bd/PyYAML-6.0.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:80bab7bfc629882493af4aa31a4cfa43a4c57c83813253626916b8c7ada83476", size = 767542 }, - { url = "https://files.pythonhosted.org/packages/d4/00/dd137d5bcc7efea1836d6264f049359861cf548469d18da90cd8216cf05f/PyYAML-6.0.2-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:0833f8694549e586547b576dcfaba4a6b55b9e96098b36cdc7ebefe667dfed48", size = 731164 }, - { url = "https://files.pythonhosted.org/packages/c9/1f/4f998c900485e5c0ef43838363ba4a9723ac0ad73a9dc42068b12aaba4e4/PyYAML-6.0.2-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:8b9c7197f7cb2738065c481a0461e50ad02f18c78cd75775628afb4d7137fb3b", size = 756611 }, + { url = "https://files.pythonhosted.org/packages/d4/d1/bba4ad5dca32d48c0e9c4845e84fa44933308c595d22c9e4b977a5007c4b/testcontainers-4.9.1-py3-none-any.whl", hash = "sha256:315fb94b42a383872df530aa45319745278ef0cc18b9cfcdc231a75d14afa5a0", size = 105478, upload-time = "2025-01-21T20:16:31.266Z" }, ] [[package]] -name = "requests" -version = "2.32.3" +name = "text-unidecode" +version = "1.3" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/ab/e2/e9a00f0ccb71718418230718b3d900e71a5d16e701a3dae079a21e9cd8f8/text-unidecode-1.3.tar.gz", hash = "sha256:bad6603bb14d279193107714b288be206cac565dfa49aa5b105294dd5c4aab93", size = 76885, upload-time = "2019-08-30T21:36:45.405Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/a6/a5/c0b6468d3824fe3fde30dbb5e1f687b291608f9473681bbf7dabbf5a87d7/text_unidecode-1.3-py2.py3-none-any.whl", hash = "sha256:1311f10e8b895935241623731c2ba64f4c455287888b18189350b67134a822e8", size = 78154, upload-time = "2019-08-30T21:37:03.543Z" }, +] + +[[package]] +name = "textual" +version = "3.5.0" source = { registry = "https://pypi.org/simple" } dependencies = [ - { name = "certifi", marker = "sys_platform == 'darwin' or sys_platform == 'linux'" }, - { name = "charset-normalizer", marker = "sys_platform == 'darwin' or sys_platform == 'linux'" }, - { name = "idna", marker = "sys_platform == 'darwin' or sys_platform == 'linux'" }, - { name = "urllib3", marker = "sys_platform == 'darwin' or sys_platform == 'linux'" }, + { name = "markdown-it-py", extra = ["linkify", "plugins"], marker = "(sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base') or (sys_platform == 'linux' and extra == 'group-9-notebooks-jupyter-datascience-image') or (sys_platform == 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (sys_platform == 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (sys_platform == 'linux' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (sys_platform == 'linux' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (sys_platform == 'linux' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai')" }, + { name = "platformdirs", marker = "sys_platform == 'linux'" }, + { name = "rich", marker = "sys_platform == 'linux'" }, + { name = "typing-extensions", marker = "sys_platform == 'linux'" }, ] -sdist = { url = "https://files.pythonhosted.org/packages/63/70/2bf7780ad2d390a8d301ad0b550f1581eadbd9a20f896afe06353c2a2913/requests-2.32.3.tar.gz", hash = "sha256:55365417734eb18255590a9ff9eb97e9e1da868d4ccd6402399eaf68af20a760", size = 131218 } +sdist = { url = "https://files.pythonhosted.org/packages/0c/63/16cdf4b9efb47366940d8315118c5c6dd6309f5eb2c159d7195b60e2e221/textual-3.5.0.tar.gz", hash = "sha256:c4a440338694672acf271c74904f1cf1e4a64c6761c056b02a561774b81a04f4", size = 1590084, upload-time = "2025-06-20T14:46:58.263Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/f9/9b/335f9764261e915ed497fcdeb11df5dfd6f7bf257d4a6a2a686d80da4d54/requests-2.32.3-py3-none-any.whl", hash = "sha256:70761cfe03c773ceb22aa2f671b4757976145175cdfca038c02654d061d6dcc6", size = 64928 }, + { url = "https://files.pythonhosted.org/packages/1f/36/2597036cb80e40f71555bf59741471f7bd76ebed112f10ae0549650a12bf/textual-3.5.0-py3-none-any.whl", hash = "sha256:7c960efb70391b754e66201776793de2b26d699d51fb91f5f78401d13cec79a1", size = 688740, upload-time = "2025-06-20T14:46:56.484Z" }, ] [[package]] -name = "requests-oauthlib" -version = "2.0.0" +name = "tf2onnx" +version = "1.16.1" source = { registry = "https://pypi.org/simple" } dependencies = [ - { name = "oauthlib", marker = "sys_platform == 'darwin' or sys_platform == 'linux'" }, - { name = "requests", marker = "sys_platform == 'darwin' or sys_platform == 'linux'" }, + { name = "protobuf", marker = "sys_platform == 'linux'" }, ] -sdist = { url = "https://files.pythonhosted.org/packages/42/f2/05f29bc3913aea15eb670be136045bf5c5bbf4b99ecb839da9b422bb2c85/requests-oauthlib-2.0.0.tar.gz", hash = "sha256:b3dffaebd884d8cd778494369603a9e7b58d29111bf6b41bdc2dcd87203af4e9", size = 55650 } wheels = [ - { url = "https://files.pythonhosted.org/packages/3b/5d/63d4ae3b9daea098d5d6f5da83984853c1bbacd5dc826764b249fe119d24/requests_oauthlib-2.0.0-py2.py3-none-any.whl", hash = "sha256:7dd8a5c40426b779b0868c404bdef9768deccf22749cde15852df527e6269b36", size = 24179 }, + { url = "https://files.pythonhosted.org/packages/3f/48/826db3d02645d84e7ee5d5ce8407f771057d40fe224d9c3e89536674ccef/tf2onnx-1.16.1-py3-none-any.whl", hash = "sha256:90fb5f62575896d47884d27dc313cfebff36b8783e1094335ad00824ce923a8a", size = 455820, upload-time = "2024-01-16T10:30:19.345Z" }, ] [[package]] -name = "rich" -version = "13.9.4" +name = "threadpoolctl" +version = "3.6.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/b7/4d/08c89e34946fce2aec4fbb45c9016efd5f4d7f24af8e5d93296e935631d8/threadpoolctl-3.6.0.tar.gz", hash = "sha256:8ab8b4aa3491d812b623328249fab5302a68d2d71745c8a4c719a2fcaba9f44e", size = 21274, upload-time = "2025-03-13T13:49:23.031Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/32/d5/f9a850d79b0851d1d4ef6456097579a9005b31fea68726a4ae5f2d82ddd9/threadpoolctl-3.6.0-py3-none-any.whl", hash = "sha256:43a0b8fd5a2928500110039e43a5eed8480b918967083ea48dc3ab9f13c4a7fb", size = 18638, upload-time = "2025-03-13T13:49:21.846Z" }, +] + +[[package]] +name = "timeout-sampler" +version = "1.0.3" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "python-simple-logger", marker = "sys_platform == 'linux' or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai')" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/e6/40/666561ffecb9b50adae217919875c39f2de73b36245a60f0e16a6e5526e6/timeout_sampler-1.0.3.tar.gz", hash = "sha256:e07826c346fc591422fc94664c776c139341198edefde69d25732893c4f09188", size = 3658, upload-time = "2024-12-15T12:49:47.667Z" } + +[[package]] +name = "tinycss2" +version = "1.4.0" source = { registry = "https://pypi.org/simple" } dependencies = [ - { name = "markdown-it-py", marker = "sys_platform == 'darwin' or sys_platform == 'linux'" }, - { name = "pygments", marker = "sys_platform == 'darwin' or sys_platform == 'linux'" }, + { name = "webencodings", marker = "sys_platform == 'linux'" }, ] -sdist = { url = "https://files.pythonhosted.org/packages/ab/3a/0316b28d0761c6734d6bc14e770d85506c986c85ffb239e688eeaab2c2bc/rich-13.9.4.tar.gz", hash = "sha256:439594978a49a09530cff7ebc4b5c7103ef57baf48d5ea3184f21d9a2befa098", size = 223149 } +sdist = { url = "https://files.pythonhosted.org/packages/7a/fd/7a5ee21fd08ff70d3d33a5781c255cbe779659bd03278feb98b19ee550f4/tinycss2-1.4.0.tar.gz", hash = "sha256:10c0972f6fc0fbee87c3edb76549357415e94548c1ae10ebccdea16fb404a9b7", size = 87085, upload-time = "2024-10-24T14:58:29.895Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/19/71/39c7c0d87f8d4e6c020a393182060eaefeeae6c01dab6a84ec346f2567df/rich-13.9.4-py3-none-any.whl", hash = "sha256:6049d5e6ec054bf2779ab3358186963bac2ea89175919d699e378b99738c2a90", size = 242424 }, + { url = "https://files.pythonhosted.org/packages/e6/34/ebdc18bae6aa14fbee1a08b63c015c72b64868ff7dae68808ab500c492e2/tinycss2-1.4.0-py3-none-any.whl", hash = "sha256:3a49cf47b7675da0b15d0c6e1df8df4ebd96e9394bb905a5775adb0d884c5289", size = 26610, upload-time = "2024-10-24T14:58:28.029Z" }, ] [[package]] -name = "rsa" -version = "4.9" +name = "tokenizers" +version = "0.21.2" source = { registry = "https://pypi.org/simple" } dependencies = [ - { name = "pyasn1", marker = "sys_platform == 'darwin' or sys_platform == 'linux'" }, + { name = "huggingface-hub", marker = "sys_platform == 'linux'" }, ] -sdist = { url = "https://files.pythonhosted.org/packages/aa/65/7d973b89c4d2351d7fb232c2e452547ddfa243e93131e7cfa766da627b52/rsa-4.9.tar.gz", hash = "sha256:e38464a49c6c85d7f1351b0126661487a7e0a14a50f1675ec50eb34d4f20ef21", size = 29711 } +sdist = { url = "https://files.pythonhosted.org/packages/ab/2d/b0fce2b8201635f60e8c95990080f58461cc9ca3d5026de2e900f38a7f21/tokenizers-0.21.2.tar.gz", hash = "sha256:fdc7cffde3e2113ba0e6cc7318c40e3438a4d74bbc62bf04bcc63bdfb082ac77", size = 351545, upload-time = "2025-06-24T10:24:52.449Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/49/97/fa78e3d2f65c02c8e1268b9aba606569fe97f6c8f7c2d74394553347c145/rsa-4.9-py3-none-any.whl", hash = "sha256:90260d9058e514786967344d0ef75fa8727eed8a7d2e43ce9f4bcf1b536174f7", size = 34315 }, + { url = "https://files.pythonhosted.org/packages/1d/cc/2936e2d45ceb130a21d929743f1e9897514691bec123203e10837972296f/tokenizers-0.21.2-cp39-abi3-macosx_10_12_x86_64.whl", hash = "sha256:342b5dfb75009f2255ab8dec0041287260fed5ce00c323eb6bab639066fef8ec", size = 2875206, upload-time = "2025-06-24T10:24:42.755Z" }, + { url = "https://files.pythonhosted.org/packages/6c/e6/33f41f2cc7861faeba8988e7a77601407bf1d9d28fc79c5903f8f77df587/tokenizers-0.21.2-cp39-abi3-macosx_11_0_arm64.whl", hash = "sha256:126df3205d6f3a93fea80c7a8a266a78c1bd8dd2fe043386bafdd7736a23e45f", size = 2732655, upload-time = "2025-06-24T10:24:41.56Z" }, + { url = "https://files.pythonhosted.org/packages/33/2b/1791eb329c07122a75b01035b1a3aa22ad139f3ce0ece1b059b506d9d9de/tokenizers-0.21.2-cp39-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4a32cd81be21168bd0d6a0f0962d60177c447a1aa1b1e48fa6ec9fc728ee0b12", size = 3019202, upload-time = "2025-06-24T10:24:31.791Z" }, + { url = "https://files.pythonhosted.org/packages/05/15/fd2d8104faa9f86ac68748e6f7ece0b5eb7983c7efc3a2c197cb98c99030/tokenizers-0.21.2-cp39-abi3-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:8bd8999538c405133c2ab999b83b17c08b7fc1b48c1ada2469964605a709ef91", size = 2934539, upload-time = "2025-06-24T10:24:34.567Z" }, + { url = "https://files.pythonhosted.org/packages/a5/2e/53e8fd053e1f3ffbe579ca5f9546f35ac67cf0039ed357ad7ec57f5f5af0/tokenizers-0.21.2-cp39-abi3-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:5e9944e61239b083a41cf8fc42802f855e1dca0f499196df37a8ce219abac6eb", size = 3248665, upload-time = "2025-06-24T10:24:39.024Z" }, + { url = "https://files.pythonhosted.org/packages/00/15/79713359f4037aa8f4d1f06ffca35312ac83629da062670e8830917e2153/tokenizers-0.21.2-cp39-abi3-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:514cd43045c5d546f01142ff9c79a96ea69e4b5cda09e3027708cb2e6d5762ab", size = 3451305, upload-time = "2025-06-24T10:24:36.133Z" }, + { url = "https://files.pythonhosted.org/packages/38/5f/959f3a8756fc9396aeb704292777b84f02a5c6f25c3fc3ba7530db5feb2c/tokenizers-0.21.2-cp39-abi3-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:b1b9405822527ec1e0f7d8d2fdb287a5730c3a6518189c968254a8441b21faae", size = 3214757, upload-time = "2025-06-24T10:24:37.784Z" }, + { url = "https://files.pythonhosted.org/packages/c5/74/f41a432a0733f61f3d21b288de6dfa78f7acff309c6f0f323b2833e9189f/tokenizers-0.21.2-cp39-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:fed9a4d51c395103ad24f8e7eb976811c57fbec2af9f133df471afcd922e5020", size = 3121887, upload-time = "2025-06-24T10:24:40.293Z" }, + { url = "https://files.pythonhosted.org/packages/3c/6a/bc220a11a17e5d07b0dfb3b5c628621d4dcc084bccd27cfaead659963016/tokenizers-0.21.2-cp39-abi3-musllinux_1_2_aarch64.whl", hash = "sha256:2c41862df3d873665ec78b6be36fcc30a26e3d4902e9dd8608ed61d49a48bc19", size = 9091965, upload-time = "2025-06-24T10:24:44.431Z" }, + { url = "https://files.pythonhosted.org/packages/6c/bd/ac386d79c4ef20dc6f39c4706640c24823dca7ebb6f703bfe6b5f0292d88/tokenizers-0.21.2-cp39-abi3-musllinux_1_2_armv7l.whl", hash = "sha256:ed21dc7e624e4220e21758b2e62893be7101453525e3d23264081c9ef9a6d00d", size = 9053372, upload-time = "2025-06-24T10:24:46.455Z" }, + { url = "https://files.pythonhosted.org/packages/63/7b/5440bf203b2a5358f074408f7f9c42884849cd9972879e10ee6b7a8c3b3d/tokenizers-0.21.2-cp39-abi3-musllinux_1_2_i686.whl", hash = "sha256:0e73770507e65a0e0e2a1affd6b03c36e3bc4377bd10c9ccf51a82c77c0fe365", size = 9298632, upload-time = "2025-06-24T10:24:48.446Z" }, + { url = "https://files.pythonhosted.org/packages/a4/d2/faa1acac3f96a7427866e94ed4289949b2524f0c1878512516567d80563c/tokenizers-0.21.2-cp39-abi3-musllinux_1_2_x86_64.whl", hash = "sha256:106746e8aa9014a12109e58d540ad5465b4c183768ea96c03cbc24c44d329958", size = 9470074, upload-time = "2025-06-24T10:24:50.378Z" }, + { url = "https://files.pythonhosted.org/packages/d8/a5/896e1ef0707212745ae9f37e84c7d50269411aef2e9ccd0de63623feecdf/tokenizers-0.21.2-cp39-abi3-win32.whl", hash = "sha256:cabda5a6d15d620b6dfe711e1af52205266d05b379ea85a8a301b3593c60e962", size = 2330115, upload-time = "2025-06-24T10:24:55.069Z" }, + { url = "https://files.pythonhosted.org/packages/13/c3/cc2755ee10be859c4338c962a35b9a663788c0c0b50c0bdd8078fb6870cf/tokenizers-0.21.2-cp39-abi3-win_amd64.whl", hash = "sha256:58747bb898acdb1007f37a7bbe614346e98dc28708ffb66a3fd50ce169ac6c98", size = 2509918, upload-time = "2025-06-24T10:24:53.71Z" }, ] [[package]] -name = "ruff" -version = "0.9.7" +name = "tomlkit" +version = "0.13.3" source = { registry = "https://pypi.org/simple" } -sdist = { url = "https://files.pythonhosted.org/packages/39/8b/a86c300359861b186f18359adf4437ac8e4c52e42daa9eedc731ef9d5b53/ruff-0.9.7.tar.gz", hash = "sha256:643757633417907510157b206e490c3aa11cab0c087c912f60e07fbafa87a4c6", size = 3669813 } +sdist = { url = "https://files.pythonhosted.org/packages/cc/18/0bbf3884e9eaa38819ebe46a7bd25dcd56b67434402b66a58c4b8e552575/tomlkit-0.13.3.tar.gz", hash = "sha256:430cf247ee57df2b94ee3fbe588e71d362a941ebb545dec29b53961d61add2a1", size = 185207, upload-time = "2025-06-05T07:13:44.947Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/b1/f3/3a1d22973291226df4b4e2ff70196b926b6f910c488479adb0eeb42a0d7f/ruff-0.9.7-py3-none-linux_armv6l.whl", hash = "sha256:99d50def47305fe6f233eb8dabfd60047578ca87c9dcb235c9723ab1175180f4", size = 11774588 }, - { url = "https://files.pythonhosted.org/packages/8e/c9/b881f4157b9b884f2994fd08ee92ae3663fb24e34b0372ac3af999aa7fc6/ruff-0.9.7-py3-none-macosx_10_12_x86_64.whl", hash = "sha256:d59105ae9c44152c3d40a9c40d6331a7acd1cdf5ef404fbe31178a77b174ea66", size = 11746848 }, - { url = "https://files.pythonhosted.org/packages/14/89/2f546c133f73886ed50a3d449e6bf4af27d92d2f960a43a93d89353f0945/ruff-0.9.7-py3-none-macosx_11_0_arm64.whl", hash = "sha256:f313b5800483770bd540cddac7c90fc46f895f427b7820f18fe1822697f1fec9", size = 11177525 }, - { url = "https://files.pythonhosted.org/packages/d7/93/6b98f2c12bf28ab9def59c50c9c49508519c5b5cfecca6de871cf01237f6/ruff-0.9.7-py3-none-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:042ae32b41343888f59c0a4148f103208bf6b21c90118d51dc93a68366f4e903", size = 11996580 }, - { url = "https://files.pythonhosted.org/packages/8e/3f/b3fcaf4f6d875e679ac2b71a72f6691a8128ea3cb7be07cbb249f477c061/ruff-0.9.7-py3-none-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:87862589373b33cc484b10831004e5e5ec47dc10d2b41ba770e837d4f429d721", size = 11525674 }, - { url = "https://files.pythonhosted.org/packages/f0/48/33fbf18defb74d624535d5d22adcb09a64c9bbabfa755bc666189a6b2210/ruff-0.9.7-py3-none-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:a17e1e01bee0926d351a1ee9bc15c445beae888f90069a6192a07a84af544b6b", size = 12739151 }, - { url = "https://files.pythonhosted.org/packages/63/b5/7e161080c5e19fa69495cbab7c00975ef8a90f3679caa6164921d7f52f4a/ruff-0.9.7-py3-none-manylinux_2_17_ppc64.manylinux2014_ppc64.whl", hash = "sha256:7c1f880ac5b2cbebd58b8ebde57069a374865c73f3bf41f05fe7a179c1c8ef22", size = 13416128 }, - { url = "https://files.pythonhosted.org/packages/4e/c8/b5e7d61fb1c1b26f271ac301ff6d9de5e4d9a9a63f67d732fa8f200f0c88/ruff-0.9.7-py3-none-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:e63fc20143c291cab2841dbb8260e96bafbe1ba13fd3d60d28be2c71e312da49", size = 12870858 }, - { url = "https://files.pythonhosted.org/packages/da/cb/2a1a8e4e291a54d28259f8fc6a674cd5b8833e93852c7ef5de436d6ed729/ruff-0.9.7-py3-none-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:91ff963baed3e9a6a4eba2a02f4ca8eaa6eba1cc0521aec0987da8d62f53cbef", size = 14786046 }, - { url = "https://files.pythonhosted.org/packages/ca/6c/c8f8a313be1943f333f376d79724260da5701426c0905762e3ddb389e3f4/ruff-0.9.7-py3-none-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:88362e3227c82f63eaebf0b2eff5b88990280fb1ecf7105523883ba8c3aaf6fb", size = 12550834 }, - { url = "https://files.pythonhosted.org/packages/9d/ad/f70cf5e8e7c52a25e166bdc84c082163c9c6f82a073f654c321b4dff9660/ruff-0.9.7-py3-none-musllinux_1_2_aarch64.whl", hash = "sha256:0372c5a90349f00212270421fe91874b866fd3626eb3b397ede06cd385f6f7e0", size = 11961307 }, - { url = "https://files.pythonhosted.org/packages/52/d5/4f303ea94a5f4f454daf4d02671b1fbfe2a318b5fcd009f957466f936c50/ruff-0.9.7-py3-none-musllinux_1_2_armv7l.whl", hash = "sha256:d76b8ab60e99e6424cd9d3d923274a1324aefce04f8ea537136b8398bbae0a62", size = 11612039 }, - { url = "https://files.pythonhosted.org/packages/eb/c8/bd12a23a75603c704ce86723be0648ba3d4ecc2af07eecd2e9fa112f7e19/ruff-0.9.7-py3-none-musllinux_1_2_i686.whl", hash = "sha256:0c439bdfc8983e1336577f00e09a4e7a78944fe01e4ea7fe616d00c3ec69a3d0", size = 12168177 }, - { url = "https://files.pythonhosted.org/packages/cc/57/d648d4f73400fef047d62d464d1a14591f2e6b3d4a15e93e23a53c20705d/ruff-0.9.7-py3-none-musllinux_1_2_x86_64.whl", hash = "sha256:115d1f15e8fdd445a7b4dc9a30abae22de3f6bcabeb503964904471691ef7606", size = 12610122 }, + { url = "https://files.pythonhosted.org/packages/bd/75/8539d011f6be8e29f339c42e633aae3cb73bffa95dd0f9adec09b9c58e85/tomlkit-0.13.3-py3-none-any.whl", hash = "sha256:c89c649d79ee40629a9fda55f8ace8c6a1b42deb912b2a8fd8d942ddadb606b0", size = 38901, upload-time = "2025-06-05T07:13:43.546Z" }, ] [[package]] -name = "setuptools" -version = "75.8.1" +name = "torch" +version = "2.6.0" source = { registry = "https://pypi.org/simple" } -sdist = { url = "https://files.pythonhosted.org/packages/e8/42/0e5f75d734f181367de4acd9aba8f875453a5905169c5485ca8416b015ae/setuptools-75.8.1.tar.gz", hash = "sha256:65fb779a8f28895242923582eadca2337285f0891c2c9e160754df917c3d2530", size = 1343534 } +resolution-markers = [ + "python_full_version >= '3.12' and sys_platform == 'linux'", + "python_full_version < '3.12' and sys_platform == 'linux'", +] +dependencies = [ + { name = "filelock", marker = "(sys_platform == 'linux' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-trustyai') or (sys_platform == 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-pytorchcuda') or (sys_platform == 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai')" }, + { name = "fsspec", marker = "(sys_platform == 'linux' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-trustyai') or (sys_platform == 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-pytorchcuda') or (sys_platform == 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai')" }, + { name = "jinja2", marker = "(sys_platform == 'linux' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-trustyai') or (sys_platform == 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-pytorchcuda') or (sys_platform == 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai')" }, + { name = "networkx", marker = "(sys_platform == 'linux' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-trustyai') or (sys_platform == 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-pytorchcuda') or (sys_platform == 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai')" }, + { 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 == 'group-9-notebooks-jupyter-trustyai-image') or (platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-pytorchcuda') or (platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-pytorchrocm') or (platform_machine != 'x86_64' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-tensorflowcuda') or (platform_machine != 'x86_64' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-tensorflowrocm') or (platform_machine != 'x86_64' and extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-tensorflowcuda') or (platform_machine != 'x86_64' and extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-trustyai') or (platform_machine != 'x86_64' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-trustyai') or (platform_machine != 'x86_64' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowcuda') or (platform_machine != 'x86_64' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowrocm') or (platform_machine != 'x86_64' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-trustyai') or (platform_machine != 'x86_64' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm') or (platform_machine != 'x86_64' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowcuda') or (platform_machine != 'x86_64' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowrocm') or (platform_machine != 'x86_64' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-trustyai') or (platform_machine != 'x86_64' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (platform_machine != 'x86_64' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (platform_machine != 'x86_64' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-trustyai') or (platform_machine != 'x86_64' and extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda') or (platform_machine != 'x86_64' and extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchrocm') or (platform_machine != 'x86_64' and extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowcuda') or (platform_machine != 'x86_64' and extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowrocm') or (platform_machine != 'x86_64' and extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-trustyai') or (platform_machine != 'x86_64' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (platform_machine != 'x86_64' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (platform_machine != 'x86_64' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (platform_machine != 'x86_64' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (platform_machine != 'x86_64' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (platform_machine != 'x86_64' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (platform_machine != 'x86_64' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (platform_machine != 'x86_64' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (platform_machine != 'x86_64' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-trustyai') or (platform_machine != 'x86_64' and extra == 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai')" }, + { 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 == 'group-9-notebooks-jupyter-trustyai-image') or (platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-pytorchcuda') or (platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-pytorchrocm') or (platform_machine != 'x86_64' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-tensorflowcuda') or (platform_machine != 'x86_64' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-tensorflowrocm') or (platform_machine != 'x86_64' and extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-tensorflowcuda') or (platform_machine != 'x86_64' and extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-trustyai') or (platform_machine != 'x86_64' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-trustyai') or (platform_machine != 'x86_64' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowcuda') or (platform_machine != 'x86_64' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowrocm') or (platform_machine != 'x86_64' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-trustyai') or (platform_machine != 'x86_64' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm') or (platform_machine != 'x86_64' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowcuda') or (platform_machine != 'x86_64' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowrocm') or (platform_machine != 'x86_64' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-trustyai') or (platform_machine != 'x86_64' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (platform_machine != 'x86_64' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (platform_machine != 'x86_64' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-trustyai') or (platform_machine != 'x86_64' and extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda') or (platform_machine != 'x86_64' and extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchrocm') or (platform_machine != 'x86_64' and extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowcuda') or (platform_machine != 'x86_64' and extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowrocm') or (platform_machine != 'x86_64' and extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-trustyai') or (platform_machine != 'x86_64' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (platform_machine != 'x86_64' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (platform_machine != 'x86_64' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (platform_machine != 'x86_64' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (platform_machine != 'x86_64' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (platform_machine != 'x86_64' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (platform_machine != 'x86_64' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (platform_machine != 'x86_64' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (platform_machine != 'x86_64' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-trustyai') or (platform_machine != 'x86_64' and extra == 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai')" }, + { 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 == 'group-9-notebooks-jupyter-trustyai-image') or (platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-pytorchcuda') or (platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-pytorchrocm') or (platform_machine != 'x86_64' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-tensorflowcuda') or (platform_machine != 'x86_64' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-tensorflowrocm') or (platform_machine != 'x86_64' and extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-tensorflowcuda') or (platform_machine != 'x86_64' and extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-trustyai') or (platform_machine != 'x86_64' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-trustyai') or (platform_machine != 'x86_64' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowcuda') or (platform_machine != 'x86_64' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowrocm') or (platform_machine != 'x86_64' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-trustyai') or (platform_machine != 'x86_64' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm') or (platform_machine != 'x86_64' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowcuda') or (platform_machine != 'x86_64' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowrocm') or (platform_machine != 'x86_64' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-trustyai') or (platform_machine != 'x86_64' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (platform_machine != 'x86_64' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (platform_machine != 'x86_64' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-trustyai') or (platform_machine != 'x86_64' and extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda') or (platform_machine != 'x86_64' and extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchrocm') or (platform_machine != 'x86_64' and extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowcuda') or (platform_machine != 'x86_64' and extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowrocm') or (platform_machine != 'x86_64' and extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-trustyai') or (platform_machine != 'x86_64' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (platform_machine != 'x86_64' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (platform_machine != 'x86_64' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (platform_machine != 'x86_64' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (platform_machine != 'x86_64' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (platform_machine != 'x86_64' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (platform_machine != 'x86_64' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (platform_machine != 'x86_64' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (platform_machine != 'x86_64' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-trustyai') or (platform_machine != 'x86_64' and extra == 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai')" }, + { name = "nvidia-cuda-runtime-cu12", version = "12.4.127", source = { registry = "https://pypi.org/simple" }, marker = "(platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-pytorchcuda') or (platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-pytorchrocm') or (platform_machine != 'x86_64' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-tensorflowcuda') or (platform_machine != 'x86_64' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-tensorflowrocm') or (platform_machine != 'x86_64' and extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-tensorflowcuda') or (platform_machine != 'x86_64' and extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-trustyai') or (platform_machine != 'x86_64' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-trustyai') or (platform_machine != 'x86_64' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowcuda') or (platform_machine != 'x86_64' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowrocm') or (platform_machine != 'x86_64' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-trustyai') or (platform_machine != 'x86_64' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm') or (platform_machine != 'x86_64' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowcuda') or (platform_machine != 'x86_64' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowrocm') or (platform_machine != 'x86_64' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-trustyai') or (platform_machine != 'x86_64' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (platform_machine != 'x86_64' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (platform_machine != 'x86_64' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-trustyai') or (platform_machine != 'x86_64' and extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda') or (platform_machine != 'x86_64' and extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchrocm') or (platform_machine != 'x86_64' and extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowcuda') or (platform_machine != 'x86_64' and extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowrocm') or (platform_machine != 'x86_64' and extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-trustyai') or (platform_machine != 'x86_64' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (platform_machine != 'x86_64' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (platform_machine != 'x86_64' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (platform_machine != 'x86_64' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (platform_machine != 'x86_64' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (platform_machine != 'x86_64' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (platform_machine != 'x86_64' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (platform_machine != 'x86_64' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (platform_machine != 'x86_64' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-trustyai') or (platform_machine != 'x86_64' and extra == 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai')" }, + { name = "nvidia-cudnn-cu12", version = "9.1.0.70", source = { registry = "https://pypi.org/simple" }, marker = "(platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-pytorchcuda') or (platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-pytorchrocm') or (platform_machine != 'x86_64' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-tensorflowcuda') or (platform_machine != 'x86_64' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-tensorflowrocm') or (platform_machine != 'x86_64' and extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-tensorflowcuda') or (platform_machine != 'x86_64' and extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-trustyai') or (platform_machine != 'x86_64' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-trustyai') or (platform_machine != 'x86_64' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowcuda') or (platform_machine != 'x86_64' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowrocm') or (platform_machine != 'x86_64' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-trustyai') or (platform_machine != 'x86_64' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm') or (platform_machine != 'x86_64' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowcuda') or (platform_machine != 'x86_64' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowrocm') or (platform_machine != 'x86_64' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-trustyai') or (platform_machine != 'x86_64' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (platform_machine != 'x86_64' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (platform_machine != 'x86_64' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-trustyai') or (platform_machine != 'x86_64' and extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda') or (platform_machine != 'x86_64' and extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchrocm') or (platform_machine != 'x86_64' and extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowcuda') or (platform_machine != 'x86_64' and extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowrocm') or (platform_machine != 'x86_64' and extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-trustyai') or (platform_machine != 'x86_64' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (platform_machine != 'x86_64' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (platform_machine != 'x86_64' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (platform_machine != 'x86_64' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (platform_machine != 'x86_64' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (platform_machine != 'x86_64' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (platform_machine != 'x86_64' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (platform_machine != 'x86_64' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (platform_machine != 'x86_64' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-trustyai') or (platform_machine != 'x86_64' and extra == 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai')" }, + { name = "nvidia-cufft-cu12", version = "11.2.1.3", source = { registry = "https://pypi.org/simple" }, marker = "(platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-pytorchcuda') or (platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-pytorchrocm') or (platform_machine != 'x86_64' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-tensorflowcuda') or (platform_machine != 'x86_64' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-tensorflowrocm') or (platform_machine != 'x86_64' and extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-tensorflowcuda') or (platform_machine != 'x86_64' and extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-trustyai') or (platform_machine != 'x86_64' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-trustyai') or (platform_machine != 'x86_64' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowcuda') or (platform_machine != 'x86_64' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowrocm') or (platform_machine != 'x86_64' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-trustyai') or (platform_machine != 'x86_64' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm') or (platform_machine != 'x86_64' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowcuda') or (platform_machine != 'x86_64' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowrocm') or (platform_machine != 'x86_64' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-trustyai') or (platform_machine != 'x86_64' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (platform_machine != 'x86_64' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (platform_machine != 'x86_64' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-trustyai') or (platform_machine != 'x86_64' and extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda') or (platform_machine != 'x86_64' and extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchrocm') or (platform_machine != 'x86_64' and extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowcuda') or (platform_machine != 'x86_64' and extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowrocm') or (platform_machine != 'x86_64' and extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-trustyai') or (platform_machine != 'x86_64' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (platform_machine != 'x86_64' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (platform_machine != 'x86_64' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (platform_machine != 'x86_64' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (platform_machine != 'x86_64' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (platform_machine != 'x86_64' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (platform_machine != 'x86_64' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (platform_machine != 'x86_64' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (platform_machine != 'x86_64' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-trustyai') or (platform_machine != 'x86_64' and extra == 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai')" }, + { name = "nvidia-curand-cu12", version = "10.3.5.147", source = { registry = "https://pypi.org/simple" }, marker = "(platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-pytorchcuda') or (platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-pytorchrocm') or (platform_machine != 'x86_64' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-tensorflowcuda') or (platform_machine != 'x86_64' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-tensorflowrocm') or (platform_machine != 'x86_64' and extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-tensorflowcuda') or (platform_machine != 'x86_64' and extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-trustyai') or (platform_machine != 'x86_64' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-trustyai') or (platform_machine != 'x86_64' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowcuda') or (platform_machine != 'x86_64' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowrocm') or (platform_machine != 'x86_64' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-trustyai') or (platform_machine != 'x86_64' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm') or (platform_machine != 'x86_64' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowcuda') or (platform_machine != 'x86_64' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowrocm') or (platform_machine != 'x86_64' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-trustyai') or (platform_machine != 'x86_64' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (platform_machine != 'x86_64' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (platform_machine != 'x86_64' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-trustyai') or (platform_machine != 'x86_64' and extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda') or (platform_machine != 'x86_64' and extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchrocm') or (platform_machine != 'x86_64' and extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowcuda') or (platform_machine != 'x86_64' and extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowrocm') or (platform_machine != 'x86_64' and extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-trustyai') or (platform_machine != 'x86_64' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (platform_machine != 'x86_64' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (platform_machine != 'x86_64' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (platform_machine != 'x86_64' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (platform_machine != 'x86_64' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (platform_machine != 'x86_64' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (platform_machine != 'x86_64' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (platform_machine != 'x86_64' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (platform_machine != 'x86_64' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-trustyai') or (platform_machine != 'x86_64' and extra == 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai')" }, + { name = "nvidia-cusolver-cu12", version = "11.6.1.9", source = { registry = "https://pypi.org/simple" }, marker = "(platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-pytorchcuda') or (platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-pytorchrocm') or (platform_machine != 'x86_64' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-tensorflowcuda') or (platform_machine != 'x86_64' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-tensorflowrocm') or (platform_machine != 'x86_64' and extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-tensorflowcuda') or (platform_machine != 'x86_64' and extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-trustyai') or (platform_machine != 'x86_64' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-trustyai') or (platform_machine != 'x86_64' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowcuda') or (platform_machine != 'x86_64' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowrocm') or (platform_machine != 'x86_64' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-trustyai') or (platform_machine != 'x86_64' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm') or (platform_machine != 'x86_64' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowcuda') or (platform_machine != 'x86_64' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowrocm') or (platform_machine != 'x86_64' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-trustyai') or (platform_machine != 'x86_64' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (platform_machine != 'x86_64' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (platform_machine != 'x86_64' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-trustyai') or (platform_machine != 'x86_64' and extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda') or (platform_machine != 'x86_64' and extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchrocm') or (platform_machine != 'x86_64' and extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowcuda') or (platform_machine != 'x86_64' and extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowrocm') or (platform_machine != 'x86_64' and extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-trustyai') or (platform_machine != 'x86_64' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (platform_machine != 'x86_64' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (platform_machine != 'x86_64' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (platform_machine != 'x86_64' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (platform_machine != 'x86_64' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (platform_machine != 'x86_64' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (platform_machine != 'x86_64' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (platform_machine != 'x86_64' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (platform_machine != 'x86_64' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-trustyai') or (platform_machine != 'x86_64' and extra == 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai')" }, + { name = "nvidia-cusparse-cu12", version = "12.3.1.170", source = { registry = "https://pypi.org/simple" }, marker = "(platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-pytorchcuda') or (platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-pytorchrocm') or (platform_machine != 'x86_64' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-tensorflowcuda') or (platform_machine != 'x86_64' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-tensorflowrocm') or (platform_machine != 'x86_64' and extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-tensorflowcuda') or (platform_machine != 'x86_64' and extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-trustyai') or (platform_machine != 'x86_64' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-trustyai') or (platform_machine != 'x86_64' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowcuda') or (platform_machine != 'x86_64' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowrocm') or (platform_machine != 'x86_64' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-trustyai') or (platform_machine != 'x86_64' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm') or (platform_machine != 'x86_64' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowcuda') or (platform_machine != 'x86_64' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowrocm') or (platform_machine != 'x86_64' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-trustyai') or (platform_machine != 'x86_64' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (platform_machine != 'x86_64' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (platform_machine != 'x86_64' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-trustyai') or (platform_machine != 'x86_64' and extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda') or (platform_machine != 'x86_64' and extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchrocm') or (platform_machine != 'x86_64' and extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowcuda') or (platform_machine != 'x86_64' and extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowrocm') or (platform_machine != 'x86_64' and extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-trustyai') or (platform_machine != 'x86_64' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (platform_machine != 'x86_64' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (platform_machine != 'x86_64' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (platform_machine != 'x86_64' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (platform_machine != 'x86_64' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (platform_machine != 'x86_64' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (platform_machine != 'x86_64' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (platform_machine != 'x86_64' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (platform_machine != 'x86_64' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-trustyai') or (platform_machine != 'x86_64' and extra == 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai')" }, + { name = "nvidia-cusparselt-cu12", marker = "(platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-pytorchcuda') or (platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-pytorchrocm') or (platform_machine != 'x86_64' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-tensorflowcuda') or (platform_machine != 'x86_64' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-tensorflowrocm') or (platform_machine != 'x86_64' and extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-tensorflowcuda') or (platform_machine != 'x86_64' and extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-trustyai') or (platform_machine != 'x86_64' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-trustyai') or (platform_machine != 'x86_64' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowcuda') or (platform_machine != 'x86_64' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowrocm') or (platform_machine != 'x86_64' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-trustyai') or (platform_machine != 'x86_64' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm') or (platform_machine != 'x86_64' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowcuda') or (platform_machine != 'x86_64' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowrocm') or (platform_machine != 'x86_64' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-trustyai') or (platform_machine != 'x86_64' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (platform_machine != 'x86_64' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (platform_machine != 'x86_64' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-trustyai') or (platform_machine != 'x86_64' and extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda') or (platform_machine != 'x86_64' and extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchrocm') or (platform_machine != 'x86_64' and extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowcuda') or (platform_machine != 'x86_64' and extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowrocm') or (platform_machine != 'x86_64' and extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-trustyai') or (platform_machine != 'x86_64' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (platform_machine != 'x86_64' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (platform_machine != 'x86_64' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (platform_machine != 'x86_64' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (platform_machine != 'x86_64' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (platform_machine != 'x86_64' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (platform_machine != 'x86_64' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (platform_machine != 'x86_64' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (platform_machine != 'x86_64' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-trustyai') or (platform_machine != 'x86_64' and extra == 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai')" }, + { name = "nvidia-nccl-cu12", marker = "(platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-pytorchcuda') or (platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-pytorchrocm') or (platform_machine != 'x86_64' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-tensorflowcuda') or (platform_machine != 'x86_64' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-tensorflowrocm') or (platform_machine != 'x86_64' and extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-tensorflowcuda') or (platform_machine != 'x86_64' and extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-trustyai') or (platform_machine != 'x86_64' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-trustyai') or (platform_machine != 'x86_64' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowcuda') or (platform_machine != 'x86_64' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowrocm') or (platform_machine != 'x86_64' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-trustyai') or (platform_machine != 'x86_64' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm') or (platform_machine != 'x86_64' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowcuda') or (platform_machine != 'x86_64' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowrocm') or (platform_machine != 'x86_64' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-trustyai') or (platform_machine != 'x86_64' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (platform_machine != 'x86_64' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (platform_machine != 'x86_64' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-trustyai') or (platform_machine != 'x86_64' and extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda') or (platform_machine != 'x86_64' and extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchrocm') or (platform_machine != 'x86_64' and extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowcuda') or (platform_machine != 'x86_64' and extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowrocm') or (platform_machine != 'x86_64' and extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-trustyai') or (platform_machine != 'x86_64' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (platform_machine != 'x86_64' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (platform_machine != 'x86_64' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (platform_machine != 'x86_64' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (platform_machine != 'x86_64' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (platform_machine != 'x86_64' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (platform_machine != 'x86_64' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (platform_machine != 'x86_64' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (platform_machine != 'x86_64' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-trustyai') or (platform_machine != 'x86_64' and extra == 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai')" }, + { name = "nvidia-nvjitlink-cu12", version = "12.4.127", source = { registry = "https://pypi.org/simple" }, marker = "(platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-pytorchcuda') or (platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-pytorchrocm') or (platform_machine != 'x86_64' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-tensorflowcuda') or (platform_machine != 'x86_64' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-tensorflowrocm') or (platform_machine != 'x86_64' and extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-tensorflowcuda') or (platform_machine != 'x86_64' and extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-trustyai') or (platform_machine != 'x86_64' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-trustyai') or (platform_machine != 'x86_64' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowcuda') or (platform_machine != 'x86_64' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowrocm') or (platform_machine != 'x86_64' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-trustyai') or (platform_machine != 'x86_64' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm') or (platform_machine != 'x86_64' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowcuda') or (platform_machine != 'x86_64' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowrocm') or (platform_machine != 'x86_64' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-trustyai') or (platform_machine != 'x86_64' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (platform_machine != 'x86_64' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (platform_machine != 'x86_64' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-trustyai') or (platform_machine != 'x86_64' and extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda') or (platform_machine != 'x86_64' and extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchrocm') or (platform_machine != 'x86_64' and extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowcuda') or (platform_machine != 'x86_64' and extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowrocm') or (platform_machine != 'x86_64' and extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-trustyai') or (platform_machine != 'x86_64' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (platform_machine != 'x86_64' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (platform_machine != 'x86_64' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (platform_machine != 'x86_64' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (platform_machine != 'x86_64' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (platform_machine != 'x86_64' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (platform_machine != 'x86_64' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (platform_machine != 'x86_64' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (platform_machine != 'x86_64' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-trustyai') or (platform_machine != 'x86_64' and extra == 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai')" }, + { name = "nvidia-nvtx-cu12", marker = "(platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-pytorchcuda') or (platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-pytorchrocm') or (platform_machine != 'x86_64' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-tensorflowcuda') or (platform_machine != 'x86_64' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-tensorflowrocm') or (platform_machine != 'x86_64' and extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-tensorflowcuda') or (platform_machine != 'x86_64' and extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-trustyai') or (platform_machine != 'x86_64' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-trustyai') or (platform_machine != 'x86_64' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowcuda') or (platform_machine != 'x86_64' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowrocm') or (platform_machine != 'x86_64' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-trustyai') or (platform_machine != 'x86_64' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm') or (platform_machine != 'x86_64' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowcuda') or (platform_machine != 'x86_64' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowrocm') or (platform_machine != 'x86_64' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-trustyai') or (platform_machine != 'x86_64' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (platform_machine != 'x86_64' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (platform_machine != 'x86_64' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-trustyai') or (platform_machine != 'x86_64' and extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda') or (platform_machine != 'x86_64' and extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchrocm') or (platform_machine != 'x86_64' and extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowcuda') or (platform_machine != 'x86_64' and extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowrocm') or (platform_machine != 'x86_64' and extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-trustyai') or (platform_machine != 'x86_64' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (platform_machine != 'x86_64' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (platform_machine != 'x86_64' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (platform_machine != 'x86_64' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (platform_machine != 'x86_64' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (platform_machine != 'x86_64' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (platform_machine != 'x86_64' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (platform_machine != 'x86_64' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (platform_machine != 'x86_64' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-trustyai') or (platform_machine != 'x86_64' and extra == 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai')" }, + { name = "setuptools", marker = "(python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-pytorchcuda') or (python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-pytorchrocm') or (python_full_version < '3.12' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-tensorflowcuda') or (python_full_version < '3.12' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-tensorflowrocm') or (python_full_version < '3.12' and extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-tensorflowcuda') or (python_full_version < '3.12' and extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-trustyai') or (python_full_version < '3.12' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-trustyai') or (python_full_version < '3.12' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowcuda') or (python_full_version < '3.12' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowrocm') or (python_full_version < '3.12' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-trustyai') or (python_full_version < '3.12' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm') or (python_full_version < '3.12' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowcuda') or (python_full_version < '3.12' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowrocm') or (python_full_version < '3.12' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-trustyai') or (python_full_version < '3.12' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (python_full_version < '3.12' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (python_full_version < '3.12' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-trustyai') or (python_full_version < '3.12' and extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda') or (python_full_version < '3.12' and extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchrocm') or (python_full_version < '3.12' and extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowcuda') or (python_full_version < '3.12' and extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowrocm') or (python_full_version < '3.12' and extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-trustyai') or (python_full_version < '3.12' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (python_full_version < '3.12' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (python_full_version < '3.12' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (python_full_version < '3.12' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (python_full_version < '3.12' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (python_full_version < '3.12' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (python_full_version < '3.12' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (python_full_version < '3.12' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (python_full_version < '3.12' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-trustyai') or (python_full_version < '3.12' and extra == 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai')" }, + { name = "sympy", marker = "(sys_platform == 'linux' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-trustyai') or (sys_platform == 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-pytorchcuda') or (sys_platform == 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai')" }, + { name = "triton", marker = "(platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-pytorchcuda') or (platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-pytorchrocm') or (platform_machine != 'x86_64' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-tensorflowcuda') or (platform_machine != 'x86_64' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-tensorflowrocm') or (platform_machine != 'x86_64' and extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-tensorflowcuda') or (platform_machine != 'x86_64' and extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-trustyai') or (platform_machine != 'x86_64' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-trustyai') or (platform_machine != 'x86_64' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowcuda') or (platform_machine != 'x86_64' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowrocm') or (platform_machine != 'x86_64' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-trustyai') or (platform_machine != 'x86_64' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm') or (platform_machine != 'x86_64' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowcuda') or (platform_machine != 'x86_64' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowrocm') or (platform_machine != 'x86_64' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-trustyai') or (platform_machine != 'x86_64' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (platform_machine != 'x86_64' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (platform_machine != 'x86_64' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-trustyai') or (platform_machine != 'x86_64' and extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda') or (platform_machine != 'x86_64' and extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchrocm') or (platform_machine != 'x86_64' and extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowcuda') or (platform_machine != 'x86_64' and extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowrocm') or (platform_machine != 'x86_64' and extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-trustyai') or (platform_machine != 'x86_64' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (platform_machine != 'x86_64' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (platform_machine != 'x86_64' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (platform_machine != 'x86_64' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (platform_machine != 'x86_64' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (platform_machine != 'x86_64' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (platform_machine != 'x86_64' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (platform_machine != 'x86_64' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (platform_machine != 'x86_64' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-trustyai') or (platform_machine != 'x86_64' and extra == 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai')" }, + { name = "typing-extensions", marker = "(sys_platform == 'linux' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-trustyai') or (sys_platform == 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-pytorchcuda') or (sys_platform == 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai')" }, +] wheels = [ - { url = "https://files.pythonhosted.org/packages/da/bd/ac215d31c2904e47ec5332897442bdc19fd6b21a82068d057152f4e9c1cf/setuptools-75.8.1-py3-none-any.whl", hash = "sha256:3bc32c0b84c643299ca94e77f834730f126efd621de0cc1de64119e0e17dab1f", size = 1228867 }, + { 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" }, + { url = "https://files.pythonhosted.org/packages/0b/fa/f33a4148c6fb46ca2a3f8de39c24d473822d5774d652b66ed9b1214da5f7/torch-2.6.0-cp311-none-macosx_11_0_arm64.whl", hash = "sha256:94fc63b3b4bedd327af588696559f68c264440e2503cc9e6954019473d74ae21", size = 66530713, upload-time = "2025-01-29T16:26:38.881Z" }, + { url = "https://files.pythonhosted.org/packages/e5/35/0c52d708144c2deb595cd22819a609f78fdd699b95ff6f0ebcd456e3c7c1/torch-2.6.0-cp312-cp312-manylinux1_x86_64.whl", hash = "sha256:2bb8987f3bb1ef2675897034402373ddfc8f5ef0e156e2d8cfc47cacafdda4a9", size = 766624563, upload-time = "2025-01-29T16:23:19.084Z" }, + { url = "https://files.pythonhosted.org/packages/01/d6/455ab3fbb2c61c71c8842753b566012e1ed111e7a4c82e0e1c20d0c76b62/torch-2.6.0-cp312-cp312-manylinux_2_28_aarch64.whl", hash = "sha256:b789069020c5588c70d5c2158ac0aa23fd24a028f34a8b4fcb8fcb4d7efcf5fb", size = 95607867, upload-time = "2025-01-29T16:25:55.649Z" }, + { url = "https://files.pythonhosted.org/packages/18/cf/ae99bd066571656185be0d88ee70abc58467b76f2f7c8bfeb48735a71fe6/torch-2.6.0-cp312-cp312-win_amd64.whl", hash = "sha256:7e1448426d0ba3620408218b50aa6ada88aeae34f7a239ba5431f6c8774b1239", size = 204120469, upload-time = "2025-01-29T16:24:01.821Z" }, + { url = "https://files.pythonhosted.org/packages/81/b4/605ae4173aa37fb5aa14605d100ff31f4f5d49f617928c9f486bb3aaec08/torch-2.6.0-cp312-none-macosx_11_0_arm64.whl", hash = "sha256:9a610afe216a85a8b9bc9f8365ed561535c93e804c2a317ef7fabcc5deda0989", size = 66532538, upload-time = "2025-01-29T16:24:18.976Z" }, ] [[package]] -name = "six" -version = "1.17.0" -source = { registry = "https://pypi.org/simple" } -sdist = { url = "https://files.pythonhosted.org/packages/94/e7/b2c673351809dca68a0e064b6af791aa332cf192da575fd474ed7d6f16a2/six-1.17.0.tar.gz", hash = "sha256:ff70335d468e7eb6ec65b95b99d3a2836546063f63acc5171de367e834932a81", size = 34031 } +name = "torch" +version = "2.6.0+cu126" +source = { registry = "https://download.pytorch.org/whl/cu126" } +resolution-markers = [ + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", +] +dependencies = [ + { name = "filelock", marker = "(sys_platform == 'linux' and extra == 'group-9-notebooks-pytorchcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-trustyai') or (sys_platform == 'linux' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-trustyai') or (sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-trustyai') or (sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai')" }, + { name = "fsspec", marker = "(sys_platform == 'linux' and extra == 'group-9-notebooks-pytorchcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-trustyai') or (sys_platform == 'linux' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-trustyai') or (sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-trustyai') or (sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai')" }, + { name = "jinja2", marker = "(sys_platform == 'linux' and extra == 'group-9-notebooks-pytorchcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-trustyai') or (sys_platform == 'linux' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-trustyai') or (sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-trustyai') or (sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai')" }, + { name = "networkx", marker = "(sys_platform == 'linux' and extra == 'group-9-notebooks-pytorchcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-trustyai') or (sys_platform == 'linux' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-trustyai') or (sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-trustyai') or (sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai')" }, + { name = "setuptools", marker = "(python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-pytorchcuda') or (python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchcuda') or (python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-pytorchcuda') or (python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-pytorchcuda') or (python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-pytorchcuda') or (python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-trustyai') or (python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-pytorchcuda') or (python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-pytorchcuda') or (python_full_version < '3.12' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-tensorflowcuda') or (python_full_version < '3.12' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-tensorflowrocm') or (python_full_version < '3.12' and extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-tensorflowcuda') or (python_full_version < '3.12' and extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-trustyai') or (python_full_version < '3.12' and extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-trustyai') or (python_full_version < '3.12' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-tensorflowcuda') or (python_full_version < '3.12' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-trustyai') or (python_full_version < '3.12' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-trustyai') or (python_full_version < '3.12' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowcuda') or (python_full_version < '3.12' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowrocm') or (python_full_version < '3.12' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-trustyai') or (python_full_version < '3.12' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm') or (python_full_version < '3.12' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowcuda') or (python_full_version < '3.12' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowrocm') or (python_full_version < '3.12' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-trustyai') or (python_full_version < '3.12' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (python_full_version < '3.12' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (python_full_version < '3.12' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (python_full_version < '3.12' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-trustyai') or (python_full_version < '3.12' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (python_full_version < '3.12' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (python_full_version < '3.12' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (python_full_version < '3.12' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (python_full_version < '3.12' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (python_full_version < '3.12' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (python_full_version < '3.12' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (python_full_version < '3.12' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (python_full_version < '3.12' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-trustyai') or (python_full_version < '3.12' and extra == 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-trustyai') or (sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchcuda')" }, + { name = "sympy", marker = "(sys_platform == 'linux' and extra == 'group-9-notebooks-pytorchcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-trustyai') or (sys_platform == 'linux' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-trustyai') or (sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-trustyai') or (sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai')" }, + { name = "typing-extensions", marker = "(sys_platform == 'linux' and extra == 'group-9-notebooks-pytorchcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-trustyai') or (sys_platform == 'linux' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-trustyai') or (sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-trustyai') or (sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai')" }, +] wheels = [ - { url = "https://files.pythonhosted.org/packages/b7/ce/149a00dd41f10bc29e5921b496af8b574d8413afcd5e30dfa0ed46c2cc5e/six-1.17.0-py2.py3-none-any.whl", hash = "sha256:4721f391ed90541fddacab5acf947aa0d3dc7d27b2e1e8eda2be8970586c3274", size = 11050 }, + { url = "https://download.pytorch.org/whl/cu126/torch-2.6.0%2Bcu126-cp311-cp311-linux_aarch64.whl", hash = "sha256:d4809b188f5c9b9753f7578085b79ae1f5d9c36a3fffc122e83e446ecf251325" }, + { url = "https://download.pytorch.org/whl/cu126/torch-2.6.0%2Bcu126-cp311-cp311-manylinux_2_28_x86_64.whl", hash = "sha256:cd3b15819315bd44d34e6fa56a8f6f64192608de17da112ec0cd6cd5fc1781f3" }, + { url = "https://download.pytorch.org/whl/cu126/torch-2.6.0%2Bcu126-cp311-cp311-win_amd64.whl", hash = "sha256:5ddca43b81c64df8ce0c59260566e648ee46b2622ab6a718e38dea3c0ca059a1" }, + { url = "https://download.pytorch.org/whl/cu126/torch-2.6.0%2Bcu126-cp312-cp312-linux_aarch64.whl", hash = "sha256:993e0e99c472df1d2746c3233ef8e88d992904fe75b8996a2c15439c43ff46c4" }, + { url = "https://download.pytorch.org/whl/cu126/torch-2.6.0%2Bcu126-cp312-cp312-manylinux_2_28_x86_64.whl", hash = "sha256:6bc5b9126daa3ac1e4d920b731da9f9503ff1f56204796de124e080f5cc3570e" }, + { url = "https://download.pytorch.org/whl/cu126/torch-2.6.0%2Bcu126-cp312-cp312-win_amd64.whl", hash = "sha256:b10c39c83e5d1afd639b5c9f5683b351e97e41390a93f59c59187004a9949924" }, ] [[package]] -name = "stack-data" -version = "0.6.3" -source = { registry = "https://pypi.org/simple" } +name = "torch" +version = "2.6.0+rocm6.2.4" +source = { registry = "https://download.pytorch.org/whl/rocm6.2.4" } +resolution-markers = [ + "python_full_version >= '3.12' and sys_platform == 'linux'", + "python_full_version < '3.12' and sys_platform == 'linux'", +] dependencies = [ - { name = "asttokens", marker = "sys_platform == 'darwin' or sys_platform == 'linux'" }, - { name = "executing", marker = "sys_platform == 'darwin' or sys_platform == 'linux'" }, - { name = "pure-eval", marker = "sys_platform == 'darwin' or sys_platform == 'linux'" }, + { name = "filelock", marker = "(sys_platform == 'linux' and extra == 'group-9-notebooks-pytorchrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-trustyai') or (sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-trustyai') or (sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai') or (sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-tensorflowcuda') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-tensorflowcuda') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai')" }, + { name = "fsspec", marker = "(sys_platform == 'linux' and extra == 'group-9-notebooks-pytorchrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-trustyai') or (sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-trustyai') or (sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai') or (sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-tensorflowcuda') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-tensorflowcuda') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai')" }, + { name = "jinja2", marker = "(sys_platform == 'linux' and extra == 'group-9-notebooks-pytorchrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-trustyai') or (sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-trustyai') or (sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai') or (sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-tensorflowcuda') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-tensorflowcuda') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai')" }, + { name = "networkx", marker = "(sys_platform == 'linux' and extra == 'group-9-notebooks-pytorchrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-trustyai') or (sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-trustyai') or (sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai') or (sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-tensorflowcuda') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-tensorflowcuda') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai')" }, + { name = "pytorch-triton-rocm", marker = "(platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-pytorchrocm') or (platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchrocm') or (platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-pytorchrocm') or (platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-pytorchrocm') or (platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-pytorchrocm') or (platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-pytorchrocm') or (platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-pytorchrocm') or (platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchrocm') or (platform_machine != 'x86_64' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-tensorflowcuda') or (platform_machine != 'x86_64' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-tensorflowrocm') or (platform_machine != 'x86_64' and extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-tensorflowcuda') or (platform_machine != 'x86_64' and extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-trustyai') or (platform_machine != 'x86_64' and extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-trustyai') or (platform_machine != 'x86_64' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-tensorflowcuda') or (platform_machine != 'x86_64' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-trustyai') or (platform_machine != 'x86_64' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-trustyai') or (platform_machine != 'x86_64' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowcuda') or (platform_machine != 'x86_64' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowrocm') or (platform_machine != 'x86_64' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-trustyai') or (platform_machine != 'x86_64' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (platform_machine != 'x86_64' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (platform_machine != 'x86_64' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-trustyai') or (platform_machine != 'x86_64' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (platform_machine != 'x86_64' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (platform_machine != 'x86_64' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (platform_machine != 'x86_64' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (platform_machine != 'x86_64' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (platform_machine != 'x86_64' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (platform_machine != 'x86_64' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (platform_machine != 'x86_64' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (platform_machine != 'x86_64' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-trustyai') or (platform_machine != 'x86_64' and extra == 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm')" }, + { name = "setuptools", marker = "(python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-pytorchrocm') or (python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchrocm') or (python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-pytorchrocm') or (python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-pytorchrocm') or (python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-pytorchrocm') or (python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-pytorchrocm') or (python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-pytorchrocm') or (python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchrocm') or (python_full_version < '3.12' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-tensorflowcuda') or (python_full_version < '3.12' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-tensorflowrocm') or (python_full_version < '3.12' and extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-tensorflowcuda') or (python_full_version < '3.12' and extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-trustyai') or (python_full_version < '3.12' and extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-trustyai') or (python_full_version < '3.12' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-tensorflowcuda') or (python_full_version < '3.12' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-trustyai') or (python_full_version < '3.12' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-trustyai') or (python_full_version < '3.12' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowcuda') or (python_full_version < '3.12' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowrocm') or (python_full_version < '3.12' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-trustyai') or (python_full_version < '3.12' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (python_full_version < '3.12' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (python_full_version < '3.12' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-trustyai') or (python_full_version < '3.12' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (python_full_version < '3.12' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (python_full_version < '3.12' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (python_full_version < '3.12' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (python_full_version < '3.12' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (python_full_version < '3.12' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (python_full_version < '3.12' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (python_full_version < '3.12' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (python_full_version < '3.12' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-trustyai') or (python_full_version < '3.12' and extra == 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm')" }, + { name = "sympy", marker = "(sys_platform == 'linux' and extra == 'group-9-notebooks-pytorchrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-trustyai') or (sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-trustyai') or (sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai') or (sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-tensorflowcuda') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-tensorflowcuda') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai')" }, + { name = "typing-extensions", marker = "(sys_platform == 'linux' and extra == 'group-9-notebooks-pytorchrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-trustyai') or (sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-trustyai') or (sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai') or (sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-tensorflowcuda') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-tensorflowcuda') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai')" }, ] -sdist = { url = "https://files.pythonhosted.org/packages/28/e3/55dcc2cfbc3ca9c29519eb6884dd1415ecb53b0e934862d3559ddcb7e20b/stack_data-0.6.3.tar.gz", hash = "sha256:836a778de4fec4dcd1dcd89ed8abff8a221f58308462e1c4aa2a3cf30148f0b9", size = 44707 } wheels = [ - { url = "https://files.pythonhosted.org/packages/f1/7b/ce1eafaf1a76852e2ec9b22edecf1daa58175c090266e9f6c64afcd81d91/stack_data-0.6.3-py3-none-any.whl", hash = "sha256:d5558e0c25a4cb0853cddad3d77da9891a08cb85dd9f9f91b9f8cd66e511e695", size = 24521 }, + { url = "https://download.pytorch.org/whl/rocm6.2.4/torch-2.6.0%2Brocm6.2.4-cp311-cp311-manylinux_2_28_x86_64.whl", hash = "sha256:e735d8c9bd19b7ed43274b921b23ca91887df78aa90cee7bfe295342572e4fc7" }, + { url = "https://download.pytorch.org/whl/rocm6.2.4/torch-2.6.0%2Brocm6.2.4-cp312-cp312-manylinux_2_28_x86_64.whl", hash = "sha256:7d895a9875d32a1256a8f3bb79defc7722695db85a36183c0a593b75afb7114e" }, ] [[package]] -name = "testcontainers" -version = "4.9.1" +name = "torchvision" +version = "0.21.0" +source = { registry = "https://download.pytorch.org/whl/cu126" } +resolution-markers = [ + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux'", +] +dependencies = [ + { name = "numpy", version = "1.24.4", source = { registry = "https://pypi.org/simple" }, marker = "(platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-pytorchcuda') or (platform_machine != 'aarch64' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-tensorflowcuda') or (platform_machine != 'aarch64' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-tensorflowrocm') or (platform_machine != 'aarch64' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-tensorflowcuda') or (platform_machine != 'aarch64' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-trustyai') or (platform_machine != 'aarch64' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-trustyai') or (platform_machine != 'aarch64' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (platform_machine != 'aarch64' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (platform_machine != 'aarch64' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (platform_machine != 'aarch64' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (platform_machine != 'aarch64' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (platform_machine != 'aarch64' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (platform_machine != 'aarch64' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (platform_machine != 'aarch64' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (platform_machine != 'aarch64' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-trustyai') or (platform_machine != 'aarch64' and extra == 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai')" }, + { name = "numpy", version = "1.26.4", source = { registry = "https://pypi.org/simple" }, marker = "(platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-pytorchcuda') or (platform_machine != 'aarch64' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-tensorflowcuda') or (platform_machine != 'aarch64' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-tensorflowrocm') or (platform_machine != 'aarch64' and extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-trustyai') or (platform_machine != 'aarch64' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-trustyai') or (platform_machine != 'aarch64' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (platform_machine != 'aarch64' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (platform_machine != 'aarch64' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (platform_machine != 'aarch64' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (platform_machine != 'aarch64' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (platform_machine != 'aarch64' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (platform_machine != 'aarch64' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (platform_machine != 'aarch64' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (platform_machine != 'aarch64' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-trustyai') or (platform_machine != 'aarch64' and extra == 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai')" }, + { name = "numpy", version = "2.2.6", source = { registry = "https://pypi.org/simple" }, marker = "(platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-pytorchcuda') or (platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchcuda') or (platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-pytorchcuda') or (platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-pytorchcuda') or (platform_machine != 'aarch64' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-tensorflowcuda') or (platform_machine != 'aarch64' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-tensorflowrocm') or (platform_machine != 'aarch64' and extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-tensorflowcuda') or (platform_machine != 'aarch64' and extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-trustyai') or (platform_machine != 'aarch64' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-trustyai') or (platform_machine != 'aarch64' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowcuda') or (platform_machine != 'aarch64' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowrocm') or (platform_machine != 'aarch64' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-trustyai') or (platform_machine != 'aarch64' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm') or (platform_machine != 'aarch64' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowcuda') or (platform_machine != 'aarch64' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowrocm') or (platform_machine != 'aarch64' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-trustyai') or (platform_machine != 'aarch64' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (platform_machine != 'aarch64' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (platform_machine != 'aarch64' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (platform_machine != 'aarch64' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-trustyai') or (platform_machine != 'aarch64' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (platform_machine != 'aarch64' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (platform_machine != 'aarch64' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (platform_machine != 'aarch64' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (platform_machine != 'aarch64' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (platform_machine != 'aarch64' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (platform_machine != 'aarch64' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (platform_machine != 'aarch64' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (platform_machine != 'aarch64' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-trustyai') or (platform_machine != 'aarch64' and extra == 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchcuda')" }, + { name = "pillow", marker = "(platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-pytorchcuda') or (platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchcuda') or (platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-pytorchcuda') or (platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-pytorchcuda') or (platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-pytorchcuda') or (platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-pytorchcuda') or (platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-pytorchcuda') or (platform_machine != 'aarch64' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-tensorflowcuda') or (platform_machine != 'aarch64' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-tensorflowrocm') or (platform_machine != 'aarch64' and extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-tensorflowcuda') or (platform_machine != 'aarch64' and extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-trustyai') or (platform_machine != 'aarch64' and extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-trustyai') or (platform_machine != 'aarch64' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-tensorflowcuda') or (platform_machine != 'aarch64' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-trustyai') or (platform_machine != 'aarch64' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-trustyai') or (platform_machine != 'aarch64' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowcuda') or (platform_machine != 'aarch64' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowrocm') or (platform_machine != 'aarch64' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-trustyai') or (platform_machine != 'aarch64' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm') or (platform_machine != 'aarch64' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowcuda') or (platform_machine != 'aarch64' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowrocm') or (platform_machine != 'aarch64' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-trustyai') or (platform_machine != 'aarch64' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (platform_machine != 'aarch64' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (platform_machine != 'aarch64' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (platform_machine != 'aarch64' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-trustyai') or (platform_machine != 'aarch64' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (platform_machine != 'aarch64' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (platform_machine != 'aarch64' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (platform_machine != 'aarch64' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (platform_machine != 'aarch64' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (platform_machine != 'aarch64' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (platform_machine != 'aarch64' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (platform_machine != 'aarch64' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (platform_machine != 'aarch64' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-trustyai') or (platform_machine != 'aarch64' and extra == 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchcuda')" }, + { name = "torch", version = "2.6.0+cu126", source = { registry = "https://download.pytorch.org/whl/cu126" }, marker = "(platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-pytorchcuda') or (platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchcuda') or (platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-pytorchcuda') or (platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-pytorchcuda') or (platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-pytorchcuda') or (platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-pytorchcuda') or (platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-pytorchcuda') or (platform_machine != 'aarch64' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-tensorflowcuda') or (platform_machine != 'aarch64' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-tensorflowrocm') or (platform_machine != 'aarch64' and extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-tensorflowcuda') or (platform_machine != 'aarch64' and extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-trustyai') or (platform_machine != 'aarch64' and extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-trustyai') or (platform_machine != 'aarch64' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-tensorflowcuda') or (platform_machine != 'aarch64' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-trustyai') or (platform_machine != 'aarch64' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-trustyai') or (platform_machine != 'aarch64' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowcuda') or (platform_machine != 'aarch64' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowrocm') or (platform_machine != 'aarch64' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-trustyai') or (platform_machine != 'aarch64' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm') or (platform_machine != 'aarch64' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowcuda') or (platform_machine != 'aarch64' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowrocm') or (platform_machine != 'aarch64' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-trustyai') or (platform_machine != 'aarch64' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (platform_machine != 'aarch64' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (platform_machine != 'aarch64' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (platform_machine != 'aarch64' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-trustyai') or (platform_machine != 'aarch64' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (platform_machine != 'aarch64' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (platform_machine != 'aarch64' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (platform_machine != 'aarch64' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (platform_machine != 'aarch64' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (platform_machine != 'aarch64' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (platform_machine != 'aarch64' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (platform_machine != 'aarch64' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (platform_machine != 'aarch64' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-trustyai') or (platform_machine != 'aarch64' and extra == 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchcuda')" }, +] +wheels = [ + { url = "https://download.pytorch.org/whl/cu126/torchvision-0.21.0-cp311-cp311-linux_aarch64.whl", hash = "sha256:566acc43a744acabb60d50fa82e4052dd40d19d99b8b7b7aa736f86279089b8b" }, + { url = "https://download.pytorch.org/whl/cu126/torchvision-0.21.0-cp312-cp312-linux_aarch64.whl", hash = "sha256:2ca42d8ccabd3da378f021131813718aab170f302e988a52b24dfeec25a80ef0" }, +] + +[[package]] +name = "torchvision" +version = "0.21.0" source = { registry = "https://pypi.org/simple" } +resolution-markers = [ + "python_full_version >= '3.12' and sys_platform == 'linux'", + "python_full_version < '3.12' and sys_platform == 'linux'", +] dependencies = [ - { name = "docker", marker = "sys_platform == 'darwin' or sys_platform == 'linux'" }, - { name = "python-dotenv", marker = "sys_platform == 'darwin' or sys_platform == 'linux'" }, - { name = "typing-extensions", marker = "sys_platform == 'darwin' or sys_platform == 'linux'" }, - { name = "urllib3", marker = "sys_platform == 'darwin' or sys_platform == 'linux'" }, - { name = "wrapt", marker = "sys_platform == 'darwin' or sys_platform == 'linux'" }, + { name = "numpy", version = "2.2.6", source = { registry = "https://pypi.org/simple" }, marker = "sys_platform == 'linux'" }, + { name = "pillow", marker = "sys_platform == 'linux'" }, + { name = "torch", version = "2.6.0", source = { registry = "https://pypi.org/simple" }, marker = "sys_platform == 'linux'" }, ] -sdist = { url = "https://files.pythonhosted.org/packages/e6/be/32bcd4143bca261b70e02109d75c2dbb5eb3e47e72e99efac9ca6ae88f76/testcontainers-4.9.1.tar.gz", hash = "sha256:37fe9a222549ddb788463935965b16f91809e9a8d654f437d6a59eac9b77f76f", size = 62463 } wheels = [ - { url = "https://files.pythonhosted.org/packages/d4/d1/bba4ad5dca32d48c0e9c4845e84fa44933308c595d22c9e4b977a5007c4b/testcontainers-4.9.1-py3-none-any.whl", hash = "sha256:315fb94b42a383872df530aa45319745278ef0cc18b9cfcdc231a75d14afa5a0", size = 105478 }, + { url = "https://files.pythonhosted.org/packages/4e/3d/b7241abfa3e6651c6e00796f5de2bd1ce4d500bf5159bcbfeea47e711b93/torchvision-0.21.0-1-cp311-cp311-manylinux_2_28_aarch64.whl", hash = "sha256:ff96666b94a55e802ea6796cabe788541719e6f4905fc59c380fed3517b6a64d", size = 2329320, upload-time = "2025-03-18T17:25:52.272Z" }, + { url = "https://files.pythonhosted.org/packages/52/5b/76ca113a853b19c7b1da761f8a72cb6429b3bd0bf932537d8df4657f47c3/torchvision-0.21.0-1-cp312-cp312-manylinux_2_28_aarch64.whl", hash = "sha256:ffa2a16499508fe6798323e455f312c7c55f2a88901c9a7c0fb1efa86cf7e327", size = 2329878, upload-time = "2025-03-18T17:25:50.039Z" }, + { url = "https://files.pythonhosted.org/packages/29/88/00c69db213ee2443ada8886ec60789b227e06bb869d85ee324578221a7f7/torchvision-0.21.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:110d115333524d60e9e474d53c7d20f096dbd8a080232f88dddb90566f90064c", size = 1784141, upload-time = "2025-01-29T16:28:51.207Z" }, + { url = "https://files.pythonhosted.org/packages/be/a2/b0cedf0a411f1a5d75cfc0b87cde56dd1ddc1878be46a42c905cd8580220/torchvision-0.21.0-cp311-cp311-manylinux1_x86_64.whl", hash = "sha256:3891cd086c5071bda6b4ee9d266bb2ac39c998c045c2ebcd1e818b8316fb5d41", size = 7237719, upload-time = "2025-01-29T16:28:20.724Z" }, + { url = "https://files.pythonhosted.org/packages/8c/a1/ee962ef9d0b2bf7a6f8b14cb95acb70e05cd2101af521032a09e43f8582f/torchvision-0.21.0-cp311-cp311-manylinux_2_28_aarch64.whl", hash = "sha256:54454923a50104c66a9ab6bd8b73a11c2fc218c964b1006d5d1fe5b442c3dcb6", size = 14700617, upload-time = "2025-01-29T16:28:30.247Z" }, + { url = "https://files.pythonhosted.org/packages/88/53/4ad334b9b1d8dd99836869fec139cb74a27781298360b91b9506c53f1d10/torchvision-0.21.0-cp311-cp311-win_amd64.whl", hash = "sha256:49bcfad8cfe2c27dee116c45d4f866d7974bcf14a5a9fbef893635deae322f2f", size = 1560523, upload-time = "2025-01-29T16:28:48.751Z" }, + { url = "https://files.pythonhosted.org/packages/6e/1b/28f527b22d5e8800184d0bc847f801ae92c7573a8c15979d92b7091c0751/torchvision-0.21.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:97a5814a93c793aaf0179cfc7f916024f4b63218929aee977b645633d074a49f", size = 1784140, upload-time = "2025-01-29T16:28:44.694Z" }, + { url = "https://files.pythonhosted.org/packages/36/63/0722e153fd27d64d5b0af45b5c8cb0e80b35a68cf0130303bc9a8bb095c7/torchvision-0.21.0-cp312-cp312-manylinux1_x86_64.whl", hash = "sha256:b578bcad8a4083b40d34f689b19ca9f7c63e511758d806510ea03c29ac568f7b", size = 7238673, upload-time = "2025-01-29T16:28:27.631Z" }, + { url = "https://files.pythonhosted.org/packages/bb/ea/03541ed901cdc30b934f897060d09bbf7a98466a08ad1680320f9ce0cbe0/torchvision-0.21.0-cp312-cp312-manylinux_2_28_aarch64.whl", hash = "sha256:5083a5b1fec2351bf5ea9900a741d54086db75baec4b1d21e39451e00977f1b1", size = 14701186, upload-time = "2025-01-29T16:28:16.491Z" }, + { url = "https://files.pythonhosted.org/packages/4c/6a/c7752603060d076dfed95135b78b047dc71792630cbcb022e3693d6f32ef/torchvision-0.21.0-cp312-cp312-win_amd64.whl", hash = "sha256:6eb75d41e3bbfc2f7642d0abba9383cc9ae6c5a4ca8d6b00628c225e1eaa63b3", size = 1560520, upload-time = "2025-01-29T16:28:42.122Z" }, ] [[package]] -name = "text-unidecode" -version = "1.3" +name = "torchvision" +version = "0.21.0+cu126" +source = { registry = "https://download.pytorch.org/whl/cu126" } +resolution-markers = [ + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux'", +] +dependencies = [ + { name = "numpy", version = "1.24.4", source = { registry = "https://pypi.org/simple" }, marker = "(platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-pytorchcuda') or (platform_machine == 'aarch64' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (platform_machine == 'aarch64' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (platform_machine == 'aarch64' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (platform_machine == 'aarch64' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai')" }, + { name = "numpy", version = "1.26.4", source = { registry = "https://pypi.org/simple" }, marker = "(platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-pytorchcuda') or (platform_machine == 'aarch64' and extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (platform_machine == 'aarch64' and extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (platform_machine == 'aarch64' and extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (platform_machine == 'aarch64' and extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai')" }, + { name = "numpy", version = "2.2.6", source = { registry = "https://pypi.org/simple" }, marker = "(platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-pytorchcuda') or (platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchcuda') or (platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-pytorchcuda') or (platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-pytorchcuda') or (platform_machine == 'aarch64' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm') or (platform_machine == 'aarch64' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowcuda') or (platform_machine == 'aarch64' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowrocm') or (platform_machine == 'aarch64' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-trustyai') or (platform_machine != 'aarch64' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (platform_machine != 'aarch64' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (platform_machine != 'aarch64' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (platform_machine != 'aarch64' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (platform_machine != 'aarch64' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (platform_machine != 'aarch64' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (platform_machine != 'aarch64' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (platform_machine != 'aarch64' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (platform_machine != 'aarch64' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (platform_machine != 'aarch64' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (platform_machine != 'aarch64' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (platform_machine != 'aarch64' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (platform_machine != 'aarch64' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (platform_machine != 'aarch64' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (platform_machine != 'aarch64' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (platform_machine != 'aarch64' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (platform_machine != 'aarch64' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-trustyai') or (platform_machine != 'aarch64' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai') or (platform_machine == 'aarch64' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (platform_machine == 'aarch64' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (platform_machine == 'aarch64' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (platform_machine == 'aarch64' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (platform_machine == 'aarch64' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (platform_machine == 'aarch64' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (platform_machine == 'aarch64' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (platform_machine == 'aarch64' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (platform_machine == 'aarch64' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (platform_machine == 'aarch64' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (platform_machine == 'aarch64' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (platform_machine == 'aarch64' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (platform_machine == 'aarch64' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (platform_machine == 'aarch64' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (platform_machine == 'aarch64' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (platform_machine == 'aarch64' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (platform_machine == 'aarch64' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (platform_machine == 'aarch64' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (platform_machine == 'aarch64' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (platform_machine == 'aarch64' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (platform_machine == 'aarch64' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (platform_machine == 'aarch64' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (platform_machine == 'aarch64' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchcuda')" }, + { name = "pillow", marker = "(platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-pytorchcuda') or (platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchcuda') or (platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-pytorchcuda') or (platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-pytorchcuda') or (platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-pytorchcuda') or (platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-pytorchcuda') or (platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-pytorchcuda') or (platform_machine == 'aarch64' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm') or (platform_machine == 'aarch64' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowcuda') or (platform_machine == 'aarch64' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowrocm') or (platform_machine == 'aarch64' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-trustyai') or (platform_machine != 'aarch64' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (platform_machine != 'aarch64' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (platform_machine != 'aarch64' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (platform_machine != 'aarch64' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (platform_machine != 'aarch64' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (platform_machine != 'aarch64' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (platform_machine != 'aarch64' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (platform_machine != 'aarch64' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (platform_machine != 'aarch64' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (platform_machine != 'aarch64' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (platform_machine != 'aarch64' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (platform_machine != 'aarch64' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (platform_machine != 'aarch64' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (platform_machine != 'aarch64' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (platform_machine != 'aarch64' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (platform_machine != 'aarch64' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (platform_machine != 'aarch64' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-trustyai') or (platform_machine != 'aarch64' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai') or (platform_machine == 'aarch64' and extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (platform_machine == 'aarch64' and extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (platform_machine == 'aarch64' and extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (platform_machine == 'aarch64' and extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (platform_machine == 'aarch64' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (platform_machine == 'aarch64' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (platform_machine == 'aarch64' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (platform_machine == 'aarch64' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (platform_machine == 'aarch64' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (platform_machine == 'aarch64' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (platform_machine == 'aarch64' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (platform_machine == 'aarch64' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (platform_machine == 'aarch64' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (platform_machine == 'aarch64' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (platform_machine == 'aarch64' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (platform_machine == 'aarch64' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (platform_machine == 'aarch64' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (platform_machine == 'aarch64' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (platform_machine == 'aarch64' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (platform_machine == 'aarch64' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (platform_machine == 'aarch64' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (platform_machine == 'aarch64' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (platform_machine == 'aarch64' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (platform_machine == 'aarch64' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (platform_machine == 'aarch64' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (platform_machine == 'aarch64' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (platform_machine == 'aarch64' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (platform_machine == 'aarch64' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (platform_machine == 'aarch64' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (platform_machine == 'aarch64' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (platform_machine == 'aarch64' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchcuda')" }, + { name = "torch", version = "2.6.0+cu126", source = { registry = "https://download.pytorch.org/whl/cu126" }, marker = "(platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-pytorchcuda') or (platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchcuda') or (platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-pytorchcuda') or (platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-pytorchcuda') or (platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-pytorchcuda') or (platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-pytorchcuda') or (platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-pytorchcuda') or (platform_machine == 'aarch64' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm') or (platform_machine == 'aarch64' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowcuda') or (platform_machine == 'aarch64' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowrocm') or (platform_machine == 'aarch64' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-trustyai') or (platform_machine != 'aarch64' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (platform_machine != 'aarch64' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (platform_machine != 'aarch64' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (platform_machine != 'aarch64' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (platform_machine != 'aarch64' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (platform_machine != 'aarch64' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (platform_machine != 'aarch64' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (platform_machine != 'aarch64' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (platform_machine != 'aarch64' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (platform_machine != 'aarch64' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (platform_machine != 'aarch64' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (platform_machine != 'aarch64' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (platform_machine != 'aarch64' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (platform_machine != 'aarch64' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (platform_machine != 'aarch64' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (platform_machine != 'aarch64' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (platform_machine != 'aarch64' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-trustyai') or (platform_machine != 'aarch64' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai') or (platform_machine == 'aarch64' and extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (platform_machine == 'aarch64' and extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (platform_machine == 'aarch64' and extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (platform_machine == 'aarch64' and extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (platform_machine == 'aarch64' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (platform_machine == 'aarch64' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (platform_machine == 'aarch64' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (platform_machine == 'aarch64' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (platform_machine == 'aarch64' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (platform_machine == 'aarch64' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (platform_machine == 'aarch64' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (platform_machine == 'aarch64' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (platform_machine == 'aarch64' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (platform_machine == 'aarch64' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (platform_machine == 'aarch64' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (platform_machine == 'aarch64' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (platform_machine == 'aarch64' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (platform_machine == 'aarch64' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (platform_machine == 'aarch64' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (platform_machine == 'aarch64' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (platform_machine == 'aarch64' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (platform_machine == 'aarch64' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (platform_machine == 'aarch64' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (platform_machine == 'aarch64' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (platform_machine == 'aarch64' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (platform_machine == 'aarch64' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (platform_machine == 'aarch64' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (platform_machine == 'aarch64' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (platform_machine == 'aarch64' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (platform_machine == 'aarch64' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (platform_machine == 'aarch64' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchcuda')" }, +] +wheels = [ + { url = "https://download.pytorch.org/whl/cu126/torchvision-0.21.0%2Bcu126-cp311-cp311-linux_x86_64.whl", hash = "sha256:bce6bff7ad759a4c924214af08c04a6c1f6f2d2901031bfcf67fcbaa79c08432" }, + { url = "https://download.pytorch.org/whl/cu126/torchvision-0.21.0%2Bcu126-cp311-cp311-win_amd64.whl", hash = "sha256:ddbf4516fbb7624ac42934b877dcf6a3b295d9914ab89643b55dedb9c9773ce4" }, + { url = "https://download.pytorch.org/whl/cu126/torchvision-0.21.0%2Bcu126-cp312-cp312-linux_x86_64.whl", hash = "sha256:ec1887ed3c842aa48308ea00f1442c683f7d351fb14e94b76c2072678d06ac92" }, + { url = "https://download.pytorch.org/whl/cu126/torchvision-0.21.0%2Bcu126-cp312-cp312-win_amd64.whl", hash = "sha256:600c18579cd6eae8f6bbfcc43a088bc512bfde1fa4de0587a4db1d44eaf411f9" }, +] + +[[package]] +name = "torchvision" +version = "0.21.0+rocm6.2.4" +source = { registry = "https://download.pytorch.org/whl/rocm6.2.4" } +resolution-markers = [ + "python_full_version >= '3.12' and sys_platform == 'linux'", + "python_full_version < '3.12' and sys_platform == 'linux'", +] +dependencies = [ + { name = "numpy", version = "1.24.4", source = { registry = "https://pypi.org/simple" }, marker = "(sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-pytorchrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-tensorflowcuda') or (extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai')" }, + { name = "numpy", version = "1.26.4", source = { registry = "https://pypi.org/simple" }, marker = "(sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-pytorchrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-trustyai')" }, + { name = "numpy", version = "2.2.6", source = { registry = "https://pypi.org/simple" }, marker = "(sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-trustyai') or (sys_platform == 'linux' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-pytorchrocm') or (sys_platform == 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-trustyai') or (sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-pytorchrocm') or (sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-pytorchrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-trustyai') or (sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-pytorchrocm') or (sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-tensorflowcuda') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai')" }, + { name = "pillow", marker = "(sys_platform == 'linux' and extra == 'group-9-notebooks-pytorchrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-trustyai') or (sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-trustyai') or (sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai') or (sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-tensorflowcuda') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-tensorflowcuda') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai')" }, + { name = "torch", version = "2.6.0+rocm6.2.4", source = { registry = "https://download.pytorch.org/whl/rocm6.2.4" }, marker = "(sys_platform == 'linux' and extra == 'group-9-notebooks-pytorchrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-trustyai') or (sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-trustyai') or (sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai') or (sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (sys_platform != 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai') or (extra == 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-tensorflowcuda') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-tensorflowcuda') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai') or (extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda') or (extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda') or (extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-tensorflowrocm') or (extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowcuda' and extra == 'group-9-notebooks-trustyai') or (extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai')" }, +] +wheels = [ + { url = "https://download.pytorch.org/whl/rocm6.2.4/torchvision-0.21.0%2Brocm6.2.4-cp311-cp311-linux_x86_64.whl", hash = "sha256:35570a77de052c2fb4eb77a6ddd8dc27307162ad7dcef27f18853d92f3086f43" }, + { url = "https://download.pytorch.org/whl/rocm6.2.4/torchvision-0.21.0%2Brocm6.2.4-cp312-cp312-linux_x86_64.whl", hash = "sha256:d63f6aeffc89c85ce20f6d0cdc9fb636bdf96fc7760dcecde8a5d2b6b8f1470c" }, +] + +[[package]] +name = "tornado" +version = "6.5.1" source = { registry = "https://pypi.org/simple" } -sdist = { url = "https://files.pythonhosted.org/packages/ab/e2/e9a00f0ccb71718418230718b3d900e71a5d16e701a3dae079a21e9cd8f8/text-unidecode-1.3.tar.gz", hash = "sha256:bad6603bb14d279193107714b288be206cac565dfa49aa5b105294dd5c4aab93", size = 76885 } +sdist = { url = "https://files.pythonhosted.org/packages/51/89/c72771c81d25d53fe33e3dca61c233b665b2780f21820ba6fd2c6793c12b/tornado-6.5.1.tar.gz", hash = "sha256:84ceece391e8eb9b2b95578db65e920d2a61070260594819589609ba9bc6308c", size = 509934, upload-time = "2025-05-22T18:15:38.788Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/a6/a5/c0b6468d3824fe3fde30dbb5e1f687b291608f9473681bbf7dabbf5a87d7/text_unidecode-1.3-py2.py3-none-any.whl", hash = "sha256:1311f10e8b895935241623731c2ba64f4c455287888b18189350b67134a822e8", size = 78154 }, + { url = "https://files.pythonhosted.org/packages/77/89/f4532dee6843c9e0ebc4e28d4be04c67f54f60813e4bf73d595fe7567452/tornado-6.5.1-cp39-abi3-macosx_10_9_universal2.whl", hash = "sha256:d50065ba7fd11d3bd41bcad0825227cc9a95154bad83239357094c36708001f7", size = 441948, upload-time = "2025-05-22T18:15:20.862Z" }, + { url = "https://files.pythonhosted.org/packages/15/9a/557406b62cffa395d18772e0cdcf03bed2fff03b374677348eef9f6a3792/tornado-6.5.1-cp39-abi3-macosx_10_9_x86_64.whl", hash = "sha256:9e9ca370f717997cb85606d074b0e5b247282cf5e2e1611568b8821afe0342d6", size = 440112, upload-time = "2025-05-22T18:15:22.591Z" }, + { url = "https://files.pythonhosted.org/packages/55/82/7721b7319013a3cf881f4dffa4f60ceff07b31b394e459984e7a36dc99ec/tornado-6.5.1-cp39-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b77e9dfa7ed69754a54c89d82ef746398be82f749df69c4d3abe75c4d1ff4888", size = 443672, upload-time = "2025-05-22T18:15:24.027Z" }, + { url = "https://files.pythonhosted.org/packages/7d/42/d11c4376e7d101171b94e03cef0cbce43e823ed6567ceda571f54cf6e3ce/tornado-6.5.1-cp39-abi3-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:253b76040ee3bab8bcf7ba9feb136436a3787208717a1fb9f2c16b744fba7331", size = 443019, upload-time = "2025-05-22T18:15:25.735Z" }, + { url = "https://files.pythonhosted.org/packages/7d/f7/0c48ba992d875521ac761e6e04b0a1750f8150ae42ea26df1852d6a98942/tornado-6.5.1-cp39-abi3-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:308473f4cc5a76227157cdf904de33ac268af770b2c5f05ca6c1161d82fdd95e", size = 443252, upload-time = "2025-05-22T18:15:27.499Z" }, + { url = "https://files.pythonhosted.org/packages/89/46/d8d7413d11987e316df4ad42e16023cd62666a3c0dfa1518ffa30b8df06c/tornado-6.5.1-cp39-abi3-musllinux_1_2_aarch64.whl", hash = "sha256:caec6314ce8a81cf69bd89909f4b633b9f523834dc1a352021775d45e51d9401", size = 443930, upload-time = "2025-05-22T18:15:29.299Z" }, + { url = "https://files.pythonhosted.org/packages/78/b2/f8049221c96a06df89bed68260e8ca94beca5ea532ffc63b1175ad31f9cc/tornado-6.5.1-cp39-abi3-musllinux_1_2_i686.whl", hash = "sha256:13ce6e3396c24e2808774741331638ee6c2f50b114b97a55c5b442df65fd9692", size = 443351, upload-time = "2025-05-22T18:15:31.038Z" }, + { url = "https://files.pythonhosted.org/packages/76/ff/6a0079e65b326cc222a54720a748e04a4db246870c4da54ece4577bfa702/tornado-6.5.1-cp39-abi3-musllinux_1_2_x86_64.whl", hash = "sha256:5cae6145f4cdf5ab24744526cc0f55a17d76f02c98f4cff9daa08ae9a217448a", size = 443328, upload-time = "2025-05-22T18:15:32.426Z" }, + { url = "https://files.pythonhosted.org/packages/49/18/e3f902a1d21f14035b5bc6246a8c0f51e0eef562ace3a2cea403c1fb7021/tornado-6.5.1-cp39-abi3-win32.whl", hash = "sha256:e0a36e1bc684dca10b1aa75a31df8bdfed656831489bc1e6a6ebed05dc1ec365", size = 444396, upload-time = "2025-05-22T18:15:34.205Z" }, + { url = "https://files.pythonhosted.org/packages/7b/09/6526e32bf1049ee7de3bebba81572673b19a2a8541f795d887e92af1a8bc/tornado-6.5.1-cp39-abi3-win_amd64.whl", hash = "sha256:908e7d64567cecd4c2b458075589a775063453aeb1d2a1853eedb806922f568b", size = 444840, upload-time = "2025-05-22T18:15:36.1Z" }, + { url = "https://files.pythonhosted.org/packages/55/a7/535c44c7bea4578e48281d83c615219f3ab19e6abc67625ef637c73987be/tornado-6.5.1-cp39-abi3-win_arm64.whl", hash = "sha256:02420a0eb7bf617257b9935e2b754d1b63897525d8a289c9d65690d580b4dcf7", size = 443596, upload-time = "2025-05-22T18:15:37.433Z" }, ] [[package]] -name = "timeout-sampler" -version = "1.0.11" +name = "tqdm" +version = "4.67.1" source = { registry = "https://pypi.org/simple" } -dependencies = [ - { name = "pytest", marker = "sys_platform == 'darwin' or sys_platform == 'linux'" }, - { name = "python-simple-logger", marker = "sys_platform == 'darwin' or sys_platform == 'linux'" }, +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 = [ + { url = "https://files.pythonhosted.org/packages/d0/30/dc54f88dd4a2b5dc8a0279bdd7270e735851848b762aeb1c1184ed1f6b14/tqdm-4.67.1-py3-none-any.whl", hash = "sha256:26445eca388f82e72884e0d580d5464cd801a3ea01e63e5601bdff9ba6a48de2", size = 78540, upload-time = "2024-11-24T20:12:19.698Z" }, ] -sdist = { url = "https://files.pythonhosted.org/packages/b7/89/b106ac5f5981234a5c0be6a613f95f0508c64fbc4e97531c8ecb18ed9c6f/timeout_sampler-1.0.11.tar.gz", hash = "sha256:bbc238c61f5714961991cd3d9254285534f8c237f489380bb7becf7f1e3afa07", size = 18241 } [[package]] name = "traitlets" version = "5.14.3" source = { registry = "https://pypi.org/simple" } -sdist = { url = "https://files.pythonhosted.org/packages/eb/79/72064e6a701c2183016abbbfedaba506d81e30e232a68c9f0d6f6fcd1574/traitlets-5.14.3.tar.gz", hash = "sha256:9ed0579d3502c94b4b3732ac120375cda96f923114522847de4b3bb98b96b6b7", size = 161621 } +sdist = { url = "https://files.pythonhosted.org/packages/eb/79/72064e6a701c2183016abbbfedaba506d81e30e232a68c9f0d6f6fcd1574/traitlets-5.14.3.tar.gz", hash = "sha256:9ed0579d3502c94b4b3732ac120375cda96f923114522847de4b3bb98b96b6b7", size = 161621, upload-time = "2024-04-19T11:11:49.746Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/00/c0/8f5d070730d7836adc9c9b6408dec68c6ced86b304a9b26a14df072a6e8c/traitlets-5.14.3-py3-none-any.whl", hash = "sha256:b74e89e397b1ed28cc831db7aea759ba6640cb3de13090ca145426688ff1ac4f", size = 85359 }, + { url = "https://files.pythonhosted.org/packages/00/c0/8f5d070730d7836adc9c9b6408dec68c6ced86b304a9b26a14df072a6e8c/traitlets-5.14.3-py3-none-any.whl", hash = "sha256:b74e89e397b1ed28cc831db7aea759ba6640cb3de13090ca145426688ff1ac4f", size = 85359, upload-time = "2024-04-19T11:11:46.763Z" }, +] + +[[package]] +name = "transformers" +version = "4.49.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "filelock", marker = "sys_platform == 'linux'" }, + { name = "huggingface-hub", marker = "sys_platform == 'linux'" }, + { name = "numpy", version = "1.24.4", source = { registry = "https://pypi.org/simple" }, marker = "sys_platform == 'linux'" }, + { name = "packaging", marker = "sys_platform == 'linux'" }, + { name = "pyyaml", marker = "sys_platform == 'linux'" }, + { name = "regex", marker = "sys_platform == 'linux'" }, + { name = "requests", marker = "sys_platform == 'linux'" }, + { name = "safetensors", marker = "sys_platform == 'linux'" }, + { name = "tokenizers", marker = "sys_platform == 'linux'" }, + { name = "tqdm", marker = "sys_platform == 'linux'" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/79/50/46573150944f46df8ec968eda854023165a84470b42f69f67c7d475dabc5/transformers-4.49.0.tar.gz", hash = "sha256:7e40e640b5b8dc3f48743f5f5adbdce3660c82baafbd3afdfc04143cdbd2089e", size = 8610952, upload-time = "2025-02-17T15:19:03.614Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/20/37/1f29af63e9c30156a3ed6ebc2754077016577c094f31de7b2631e5d379eb/transformers-4.49.0-py3-none-any.whl", hash = "sha256:6b4fded1c5fee04d384b1014495b4235a2b53c87503d7d592423c06128cbbe03", size = 9970275, upload-time = "2025-02-17T15:18:58.814Z" }, +] + +[[package]] +name = "triton" +version = "3.2.0" +source = { registry = "https://pypi.org/simple" } +wheels = [ + { 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" }, +] + +[[package]] +name = "trustyai" +version = "0.6.1" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "jpype1", marker = "sys_platform == 'linux'" }, + { name = "jupyter-bokeh", version = "3.0.7", source = { registry = "https://pypi.org/simple" }, marker = "sys_platform == 'linux'" }, + { name = "matplotlib", version = "3.6.3", source = { registry = "https://pypi.org/simple" }, marker = "sys_platform == 'linux'" }, + { name = "numpy", version = "1.24.4", source = { registry = "https://pypi.org/simple" }, marker = "sys_platform == 'linux'" }, + { name = "pandas", version = "1.5.3", source = { registry = "https://pypi.org/simple" }, marker = "sys_platform == 'linux'" }, + { name = "pyarrow", marker = "sys_platform == 'linux'" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/fc/86/e6a331460f828ad34c3e9816297aee6f93287919f3a8bf0c92e72c3ccaa3/trustyai-0.6.1.tar.gz", hash = "sha256:75e5bb935b29ef0bd5cd09d2b0765bd742cbfb3c9ff6ec447d7d8c69d7f32fb0", size = 25888593, upload-time = "2024-09-09T16:47:11.992Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/0c/f8/0fd1cea6b1f52ea10cdf8d3341556b9bed8f1822eae9bab2f90b7f018a15/trustyai-0.6.1-py3-none-any.whl", hash = "sha256:6545b47ead2ee06afdd62258a62ab9a3dab7ae9aac7b231fc5f57814c2cf2bc5", size = 25902148, upload-time = "2024-09-09T16:47:08.802Z" }, +] + +[[package]] +name = "types-python-dateutil" +version = "2.9.0.20250516" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/ef/88/d65ed807393285204ab6e2801e5d11fbbea811adcaa979a2ed3b67a5ef41/types_python_dateutil-2.9.0.20250516.tar.gz", hash = "sha256:13e80d6c9c47df23ad773d54b2826bd52dbbb41be87c3f339381c1700ad21ee5", size = 13943, upload-time = "2025-05-16T03:06:58.385Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/c5/3f/b0e8db149896005adc938a1e7f371d6d7e9eca4053a29b108978ed15e0c2/types_python_dateutil-2.9.0.20250516-py3-none-any.whl", hash = "sha256:2b2b3f57f9c6a61fba26a9c0ffb9ea5681c9b83e69cd897c6b5f668d9c0cab93", size = 14356, upload-time = "2025-05-16T03:06:57.249Z" }, ] [[package]] name = "typing-extensions" version = "4.12.2" source = { registry = "https://pypi.org/simple" } -sdist = { url = "https://files.pythonhosted.org/packages/df/db/f35a00659bc03fec321ba8bce9420de607a1d37f8342eee1863174c69557/typing_extensions-4.12.2.tar.gz", hash = "sha256:1a7ead55c7e559dd4dee8856e3a88b41225abfe1ce8df57b7c13915fe121ffb8", size = 85321 } +sdist = { url = "https://files.pythonhosted.org/packages/df/db/f35a00659bc03fec321ba8bce9420de607a1d37f8342eee1863174c69557/typing_extensions-4.12.2.tar.gz", hash = "sha256:1a7ead55c7e559dd4dee8856e3a88b41225abfe1ce8df57b7c13915fe121ffb8", size = 85321, upload-time = "2024-06-07T18:52:15.995Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/26/9f/ad63fc0248c5379346306f8668cda6e2e2e9c95e01216d2b8ffd9ff037d0/typing_extensions-4.12.2-py3-none-any.whl", hash = "sha256:04e5ca0351e0f3f85c6853954072df659d0d13fac324d0072316b67d7794700d", size = 37438, upload-time = "2024-06-07T18:52:13.582Z" }, +] + +[[package]] +name = "tzdata" +version = "2025.2" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/95/32/1a225d6164441be760d75c2c42e2780dc0873fe382da3e98a2e1e48361e5/tzdata-2025.2.tar.gz", hash = "sha256:b60a638fcc0daffadf82fe0f57e53d06bdec2f36c4df66280ae79bce6bd6f2b9", size = 196380, upload-time = "2025-03-23T13:54:43.652Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/5c/23/c7abc0ca0a1526a0774eca151daeb8de62ec457e77262b66b359c3c7679e/tzdata-2025.2-py2.py3-none-any.whl", hash = "sha256:1a403fada01ff9221ca8044d701868fa132215d84beb92242d9acd2147f667a8", size = 347839, upload-time = "2025-03-23T13:54:41.845Z" }, +] + +[[package]] +name = "uc-micro-py" +version = "1.0.3" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/91/7a/146a99696aee0609e3712f2b44c6274566bc368dfe8375191278045186b8/uc-micro-py-1.0.3.tar.gz", hash = "sha256:d321b92cff673ec58027c04015fcaa8bb1e005478643ff4a500882eaab88c48a", size = 6043, upload-time = "2024-02-09T16:52:01.654Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/37/87/1f677586e8ac487e29672e4b17455758fce261de06a0d086167bb760361a/uc_micro_py-1.0.3-py3-none-any.whl", hash = "sha256:db1dffff340817673d7b466ec86114a9dc0e9d4d9b5ba229d9d60e5c12600cd5", size = 6229, upload-time = "2024-02-09T16:52:00.371Z" }, +] + +[[package]] +name = "ujson" +version = "5.10.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/f0/00/3110fd566786bfa542adb7932d62035e0c0ef662a8ff6544b6643b3d6fd7/ujson-5.10.0.tar.gz", hash = "sha256:b3cd8f3c5d8c7738257f1018880444f7b7d9b66232c64649f562d7ba86ad4bc1", size = 7154885, upload-time = "2024-05-14T02:02:34.233Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/23/ec/3c551ecfe048bcb3948725251fb0214b5844a12aa60bee08d78315bb1c39/ujson-5.10.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:a5b366812c90e69d0f379a53648be10a5db38f9d4ad212b60af00bd4048d0f00", size = 55353, upload-time = "2024-05-14T02:00:48.04Z" }, + { url = "https://files.pythonhosted.org/packages/8d/9f/4731ef0671a0653e9f5ba18db7c4596d8ecbf80c7922dd5fe4150f1aea76/ujson-5.10.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:502bf475781e8167f0f9d0e41cd32879d120a524b22358e7f205294224c71126", size = 51813, upload-time = "2024-05-14T02:00:49.28Z" }, + { url = "https://files.pythonhosted.org/packages/1f/2b/44d6b9c1688330bf011f9abfdb08911a9dc74f76926dde74e718d87600da/ujson-5.10.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5b91b5d0d9d283e085e821651184a647699430705b15bf274c7896f23fe9c9d8", size = 51988, upload-time = "2024-05-14T02:00:50.484Z" }, + { url = "https://files.pythonhosted.org/packages/29/45/f5f5667427c1ec3383478092a414063ddd0dfbebbcc533538fe37068a0a3/ujson-5.10.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:129e39af3a6d85b9c26d5577169c21d53821d8cf68e079060602e861c6e5da1b", size = 53561, upload-time = "2024-05-14T02:00:52.146Z" }, + { url = "https://files.pythonhosted.org/packages/26/21/a0c265cda4dd225ec1be595f844661732c13560ad06378760036fc622587/ujson-5.10.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:f77b74475c462cb8b88680471193064d3e715c7c6074b1c8c412cb526466efe9", size = 58497, upload-time = "2024-05-14T02:00:53.366Z" }, + { url = "https://files.pythonhosted.org/packages/28/36/8fde862094fd2342ccc427a6a8584fed294055fdee341661c78660f7aef3/ujson-5.10.0-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:7ec0ca8c415e81aa4123501fee7f761abf4b7f386aad348501a26940beb1860f", size = 997877, upload-time = "2024-05-14T02:00:55.095Z" }, + { url = "https://files.pythonhosted.org/packages/90/37/9208e40d53baa6da9b6a1c719e0670c3f474c8fc7cc2f1e939ec21c1bc93/ujson-5.10.0-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:ab13a2a9e0b2865a6c6db9271f4b46af1c7476bfd51af1f64585e919b7c07fd4", size = 1140632, upload-time = "2024-05-14T02:00:57.099Z" }, + { url = "https://files.pythonhosted.org/packages/89/d5/2626c87c59802863d44d19e35ad16b7e658e4ac190b0dead17ff25460b4c/ujson-5.10.0-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:57aaf98b92d72fc70886b5a0e1a1ca52c2320377360341715dd3933a18e827b1", size = 1043513, upload-time = "2024-05-14T02:00:58.488Z" }, + { url = "https://files.pythonhosted.org/packages/2f/ee/03662ce9b3f16855770f0d70f10f0978ba6210805aa310c4eebe66d36476/ujson-5.10.0-cp311-cp311-win32.whl", hash = "sha256:2987713a490ceb27edff77fb184ed09acdc565db700ee852823c3dc3cffe455f", size = 38616, upload-time = "2024-05-14T02:01:00.463Z" }, + { url = "https://files.pythonhosted.org/packages/3e/20/952dbed5895835ea0b82e81a7be4ebb83f93b079d4d1ead93fcddb3075af/ujson-5.10.0-cp311-cp311-win_amd64.whl", hash = "sha256:f00ea7e00447918ee0eff2422c4add4c5752b1b60e88fcb3c067d4a21049a720", size = 42071, upload-time = "2024-05-14T02:01:02.211Z" }, + { url = "https://files.pythonhosted.org/packages/e8/a6/fd3f8bbd80842267e2d06c3583279555e8354c5986c952385199d57a5b6c/ujson-5.10.0-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:98ba15d8cbc481ce55695beee9f063189dce91a4b08bc1d03e7f0152cd4bbdd5", size = 55642, upload-time = "2024-05-14T02:01:04.055Z" }, + { url = "https://files.pythonhosted.org/packages/a8/47/dd03fd2b5ae727e16d5d18919b383959c6d269c7b948a380fdd879518640/ujson-5.10.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:a9d2edbf1556e4f56e50fab7d8ff993dbad7f54bac68eacdd27a8f55f433578e", size = 51807, upload-time = "2024-05-14T02:01:05.25Z" }, + { url = "https://files.pythonhosted.org/packages/25/23/079a4cc6fd7e2655a473ed9e776ddbb7144e27f04e8fc484a0fb45fe6f71/ujson-5.10.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:6627029ae4f52d0e1a2451768c2c37c0c814ffc04f796eb36244cf16b8e57043", size = 51972, upload-time = "2024-05-14T02:01:06.458Z" }, + { url = "https://files.pythonhosted.org/packages/04/81/668707e5f2177791869b624be4c06fb2473bf97ee33296b18d1cf3092af7/ujson-5.10.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f8ccb77b3e40b151e20519c6ae6d89bfe3f4c14e8e210d910287f778368bb3d1", size = 53686, upload-time = "2024-05-14T02:01:07.618Z" }, + { url = "https://files.pythonhosted.org/packages/bd/50/056d518a386d80aaf4505ccf3cee1c40d312a46901ed494d5711dd939bc3/ujson-5.10.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:f3caf9cd64abfeb11a3b661329085c5e167abbe15256b3b68cb5d914ba7396f3", size = 58591, upload-time = "2024-05-14T02:01:08.901Z" }, + { url = "https://files.pythonhosted.org/packages/fc/d6/aeaf3e2d6fb1f4cfb6bf25f454d60490ed8146ddc0600fae44bfe7eb5a72/ujson-5.10.0-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:6e32abdce572e3a8c3d02c886c704a38a1b015a1fb858004e03d20ca7cecbb21", size = 997853, upload-time = "2024-05-14T02:01:10.772Z" }, + { url = "https://files.pythonhosted.org/packages/f8/d5/1f2a5d2699f447f7d990334ca96e90065ea7f99b142ce96e85f26d7e78e2/ujson-5.10.0-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:a65b6af4d903103ee7b6f4f5b85f1bfd0c90ba4eeac6421aae436c9988aa64a2", size = 1140689, upload-time = "2024-05-14T02:01:12.214Z" }, + { url = "https://files.pythonhosted.org/packages/f2/2c/6990f4ccb41ed93744aaaa3786394bca0875503f97690622f3cafc0adfde/ujson-5.10.0-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:604a046d966457b6cdcacc5aa2ec5314f0e8c42bae52842c1e6fa02ea4bda42e", size = 1043576, upload-time = "2024-05-14T02:01:14.39Z" }, + { url = "https://files.pythonhosted.org/packages/14/f5/a2368463dbb09fbdbf6a696062d0c0f62e4ae6fa65f38f829611da2e8fdd/ujson-5.10.0-cp312-cp312-win32.whl", hash = "sha256:6dea1c8b4fc921bf78a8ff00bbd2bfe166345f5536c510671bccececb187c80e", size = 38764, upload-time = "2024-05-14T02:01:15.83Z" }, + { url = "https://files.pythonhosted.org/packages/59/2d/691f741ffd72b6c84438a93749ac57bf1a3f217ac4b0ea4fd0e96119e118/ujson-5.10.0-cp312-cp312-win_amd64.whl", hash = "sha256:38665e7d8290188b1e0d57d584eb8110951a9591363316dd41cf8686ab1d0abc", size = 42211, upload-time = "2024-05-14T02:01:17.567Z" }, +] + +[[package]] +name = "uri-template" +version = "1.3.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/31/c7/0336f2bd0bcbada6ccef7aaa25e443c118a704f828a0620c6fa0207c1b64/uri-template-1.3.0.tar.gz", hash = "sha256:0e00f8eb65e18c7de20d595a14336e9f337ead580c70934141624b6d1ffdacc7", size = 21678, upload-time = "2023-06-21T01:49:05.374Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/26/9f/ad63fc0248c5379346306f8668cda6e2e2e9c95e01216d2b8ffd9ff037d0/typing_extensions-4.12.2-py3-none-any.whl", hash = "sha256:04e5ca0351e0f3f85c6853954072df659d0d13fac324d0072316b67d7794700d", size = 37438 }, + { url = "https://files.pythonhosted.org/packages/e7/00/3fca040d7cf8a32776d3d81a00c8ee7457e00f80c649f1e4a863c8321ae9/uri_template-1.3.0-py3-none-any.whl", hash = "sha256:a44a133ea12d44a0c0f06d7d42a52d71282e77e2f937d8abd5655b8d56fc1363", size = 11140, upload-time = "2023-06-21T01:49:03.467Z" }, ] [[package]] name = "urllib3" -version = "2.3.0" +version = "1.26.20" source = { registry = "https://pypi.org/simple" } -sdist = { url = "https://files.pythonhosted.org/packages/aa/63/e53da845320b757bf29ef6a9062f5c669fe997973f966045cb019c3f4b66/urllib3-2.3.0.tar.gz", hash = "sha256:f8c5449b3cf0861679ce7e0503c7b44b5ec981bec0d1d3795a07f1ba96f0204d", size = 307268 } +sdist = { url = "https://files.pythonhosted.org/packages/e4/e8/6ff5e6bc22095cfc59b6ea711b687e2b7ed4bdb373f7eeec370a97d7392f/urllib3-1.26.20.tar.gz", hash = "sha256:40c2dc0c681e47eb8f90e7e27bf6ff7df2e677421fd46756da1161c39ca70d32", size = 307380, upload-time = "2024-08-29T15:43:11.37Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/c8/19/4ec628951a74043532ca2cf5d97b7b14863931476d117c471e8e2b1eb39f/urllib3-2.3.0-py3-none-any.whl", hash = "sha256:1cee9ad369867bfdbbb48b7dd50374c0967a0bb7710050facf0dd6911440e3df", size = 128369 }, + { url = "https://files.pythonhosted.org/packages/33/cf/8435d5a7159e2a9c83a95896ed596f68cf798005fe107cc655b5c5c14704/urllib3-1.26.20-py2.py3-none-any.whl", hash = "sha256:0ed14ccfbf1c30a9072c7ca157e4319b70d65f623e91e7b32fadb2853431016e", size = 144225, upload-time = "2024-08-29T15:43:08.921Z" }, ] [[package]] @@ -1146,56 +11381,754 @@ name = "virtualenv" version = "20.30.0" source = { registry = "https://pypi.org/simple" } dependencies = [ - { name = "distlib", marker = "sys_platform == 'darwin' or sys_platform == 'linux'" }, - { name = "filelock", marker = "sys_platform == 'darwin' or sys_platform == 'linux'" }, - { name = "platformdirs", marker = "sys_platform == 'darwin' or sys_platform == 'linux'" }, + { name = "distlib", marker = "sys_platform == 'linux'" }, + { name = "filelock", marker = "sys_platform == 'linux'" }, + { name = "platformdirs", marker = "sys_platform == 'linux'" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/38/e0/633e369b91bbc664df47dcb5454b6c7cf441e8f5b9d0c250ce9f0546401e/virtualenv-20.30.0.tar.gz", hash = "sha256:800863162bcaa5450a6e4d721049730e7f2dae07720e0902b0e4040bd6f9ada8", size = 4346945, upload-time = "2025-03-31T16:33:29.185Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/4c/ed/3cfeb48175f0671ec430ede81f628f9fb2b1084c9064ca67ebe8c0ed6a05/virtualenv-20.30.0-py3-none-any.whl", hash = "sha256:e34302959180fca3af42d1800df014b35019490b119eba981af27f2fa486e5d6", size = 4329461, upload-time = "2025-03-31T16:33:26.758Z" }, ] -sdist = { url = "https://files.pythonhosted.org/packages/38/e0/633e369b91bbc664df47dcb5454b6c7cf441e8f5b9d0c250ce9f0546401e/virtualenv-20.30.0.tar.gz", hash = "sha256:800863162bcaa5450a6e4d721049730e7f2dae07720e0902b0e4040bd6f9ada8", size = 4346945 } + +[[package]] +name = "watchdog" +version = "6.0.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/db/7d/7f3d619e951c88ed75c6037b246ddcf2d322812ee8ea189be89511721d54/watchdog-6.0.0.tar.gz", hash = "sha256:9ddf7c82fda3ae8e24decda1338ede66e1c99883db93711d8fb941eaa2d8c282", size = 131220, upload-time = "2024-11-01T14:07:13.037Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/4c/ed/3cfeb48175f0671ec430ede81f628f9fb2b1084c9064ca67ebe8c0ed6a05/virtualenv-20.30.0-py3-none-any.whl", hash = "sha256:e34302959180fca3af42d1800df014b35019490b119eba981af27f2fa486e5d6", size = 4329461 }, + { url = "https://files.pythonhosted.org/packages/e0/24/d9be5cd6642a6aa68352ded4b4b10fb0d7889cb7f45814fb92cecd35f101/watchdog-6.0.0-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:6eb11feb5a0d452ee41f824e271ca311a09e250441c262ca2fd7ebcf2461a06c", size = 96393, upload-time = "2024-11-01T14:06:31.756Z" }, + { url = "https://files.pythonhosted.org/packages/63/7a/6013b0d8dbc56adca7fdd4f0beed381c59f6752341b12fa0886fa7afc78b/watchdog-6.0.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:ef810fbf7b781a5a593894e4f439773830bdecb885e6880d957d5b9382a960d2", size = 88392, upload-time = "2024-11-01T14:06:32.99Z" }, + { url = "https://files.pythonhosted.org/packages/d1/40/b75381494851556de56281e053700e46bff5b37bf4c7267e858640af5a7f/watchdog-6.0.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:afd0fe1b2270917c5e23c2a65ce50c2a4abb63daafb0d419fde368e272a76b7c", size = 89019, upload-time = "2024-11-01T14:06:34.963Z" }, + { url = "https://files.pythonhosted.org/packages/39/ea/3930d07dafc9e286ed356a679aa02d777c06e9bfd1164fa7c19c288a5483/watchdog-6.0.0-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:bdd4e6f14b8b18c334febb9c4425a878a2ac20efd1e0b231978e7b150f92a948", size = 96471, upload-time = "2024-11-01T14:06:37.745Z" }, + { url = "https://files.pythonhosted.org/packages/12/87/48361531f70b1f87928b045df868a9fd4e253d9ae087fa4cf3f7113be363/watchdog-6.0.0-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:c7c15dda13c4eb00d6fb6fc508b3c0ed88b9d5d374056b239c4ad1611125c860", size = 88449, upload-time = "2024-11-01T14:06:39.748Z" }, + { url = "https://files.pythonhosted.org/packages/5b/7e/8f322f5e600812e6f9a31b75d242631068ca8f4ef0582dd3ae6e72daecc8/watchdog-6.0.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:6f10cb2d5902447c7d0da897e2c6768bca89174d0c6e1e30abec5421af97a5b0", size = 89054, upload-time = "2024-11-01T14:06:41.009Z" }, + { url = "https://files.pythonhosted.org/packages/a9/c7/ca4bf3e518cb57a686b2feb4f55a1892fd9a3dd13f470fca14e00f80ea36/watchdog-6.0.0-py3-none-manylinux2014_aarch64.whl", hash = "sha256:7607498efa04a3542ae3e05e64da8202e58159aa1fa4acddf7678d34a35d4f13", size = 79079, upload-time = "2024-11-01T14:06:59.472Z" }, + { url = "https://files.pythonhosted.org/packages/5c/51/d46dc9332f9a647593c947b4b88e2381c8dfc0942d15b8edc0310fa4abb1/watchdog-6.0.0-py3-none-manylinux2014_armv7l.whl", hash = "sha256:9041567ee8953024c83343288ccc458fd0a2d811d6a0fd68c4c22609e3490379", size = 79078, upload-time = "2024-11-01T14:07:01.431Z" }, + { url = "https://files.pythonhosted.org/packages/d4/57/04edbf5e169cd318d5f07b4766fee38e825d64b6913ca157ca32d1a42267/watchdog-6.0.0-py3-none-manylinux2014_i686.whl", hash = "sha256:82dc3e3143c7e38ec49d61af98d6558288c415eac98486a5c581726e0737c00e", size = 79076, upload-time = "2024-11-01T14:07:02.568Z" }, + { url = "https://files.pythonhosted.org/packages/ab/cc/da8422b300e13cb187d2203f20b9253e91058aaf7db65b74142013478e66/watchdog-6.0.0-py3-none-manylinux2014_ppc64.whl", hash = "sha256:212ac9b8bf1161dc91bd09c048048a95ca3a4c4f5e5d4a7d1b1a7d5752a7f96f", size = 79077, upload-time = "2024-11-01T14:07:03.893Z" }, + { url = "https://files.pythonhosted.org/packages/2c/3b/b8964e04ae1a025c44ba8e4291f86e97fac443bca31de8bd98d3263d2fcf/watchdog-6.0.0-py3-none-manylinux2014_ppc64le.whl", hash = "sha256:e3df4cbb9a450c6d49318f6d14f4bbc80d763fa587ba46ec86f99f9e6876bb26", size = 79078, upload-time = "2024-11-01T14:07:05.189Z" }, + { url = "https://files.pythonhosted.org/packages/62/ae/a696eb424bedff7407801c257d4b1afda455fe40821a2be430e173660e81/watchdog-6.0.0-py3-none-manylinux2014_s390x.whl", hash = "sha256:2cce7cfc2008eb51feb6aab51251fd79b85d9894e98ba847408f662b3395ca3c", size = 79077, upload-time = "2024-11-01T14:07:06.376Z" }, + { url = "https://files.pythonhosted.org/packages/b5/e8/dbf020b4d98251a9860752a094d09a65e1b436ad181faf929983f697048f/watchdog-6.0.0-py3-none-manylinux2014_x86_64.whl", hash = "sha256:20ffe5b202af80ab4266dcd3e91aae72bf2da48c0d33bdb15c66658e685e94e2", size = 79078, upload-time = "2024-11-01T14:07:07.547Z" }, + { url = "https://files.pythonhosted.org/packages/07/f6/d0e5b343768e8bcb4cda79f0f2f55051bf26177ecd5651f84c07567461cf/watchdog-6.0.0-py3-none-win32.whl", hash = "sha256:07df1fdd701c5d4c8e55ef6cf55b8f0120fe1aef7ef39a1c6fc6bc2e606d517a", size = 79065, upload-time = "2024-11-01T14:07:09.525Z" }, + { url = "https://files.pythonhosted.org/packages/db/d9/c495884c6e548fce18a8f40568ff120bc3a4b7b99813081c8ac0c936fa64/watchdog-6.0.0-py3-none-win_amd64.whl", hash = "sha256:cbafb470cf848d93b5d013e2ecb245d4aa1c8fd0504e863ccefa32445359d680", size = 79070, upload-time = "2024-11-01T14:07:10.686Z" }, + { url = "https://files.pythonhosted.org/packages/33/e8/e40370e6d74ddba47f002a32919d91310d6074130fe4e17dabcafc15cbf1/watchdog-6.0.0-py3-none-win_ia64.whl", hash = "sha256:a1914259fa9e1454315171103c6a30961236f508b9b623eae470268bbcc6a22f", size = 79067, upload-time = "2024-11-01T14:07:11.845Z" }, ] [[package]] name = "wcwidth" version = "0.2.13" source = { registry = "https://pypi.org/simple" } -sdist = { url = "https://files.pythonhosted.org/packages/6c/63/53559446a878410fc5a5974feb13d31d78d752eb18aeba59c7fef1af7598/wcwidth-0.2.13.tar.gz", hash = "sha256:72ea0c06399eb286d978fdedb6923a9eb47e1c486ce63e9b4e64fc18303972b5", size = 101301 } +sdist = { url = "https://files.pythonhosted.org/packages/6c/63/53559446a878410fc5a5974feb13d31d78d752eb18aeba59c7fef1af7598/wcwidth-0.2.13.tar.gz", hash = "sha256:72ea0c06399eb286d978fdedb6923a9eb47e1c486ce63e9b4e64fc18303972b5", size = 101301, upload-time = "2024-01-06T02:10:57.829Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/fd/84/fd2ba7aafacbad3c4201d395674fc6348826569da3c0937e75505ead3528/wcwidth-0.2.13-py2.py3-none-any.whl", hash = "sha256:3da69048e4540d84af32131829ff948f1e022c1c6bdb8d6102117aac784f6859", size = 34166, upload-time = "2024-01-06T02:10:55.763Z" }, +] + +[[package]] +name = "webcolors" +version = "24.11.1" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/7b/29/061ec845fb58521848f3739e466efd8250b4b7b98c1b6c5bf4d40b419b7e/webcolors-24.11.1.tar.gz", hash = "sha256:ecb3d768f32202af770477b8b65f318fa4f566c22948673a977b00d589dd80f6", size = 45064, upload-time = "2024-11-11T07:43:24.224Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/fd/84/fd2ba7aafacbad3c4201d395674fc6348826569da3c0937e75505ead3528/wcwidth-0.2.13-py2.py3-none-any.whl", hash = "sha256:3da69048e4540d84af32131829ff948f1e022c1c6bdb8d6102117aac784f6859", size = 34166 }, + { url = "https://files.pythonhosted.org/packages/60/e8/c0e05e4684d13459f93d312077a9a2efbe04d59c393bc2b8802248c908d4/webcolors-24.11.1-py3-none-any.whl", hash = "sha256:515291393b4cdf0eb19c155749a096f779f7d909f7cceea072791cb9095b92e9", size = 14934, upload-time = "2024-11-11T07:43:22.529Z" }, +] + +[[package]] +name = "webencodings" +version = "0.5.1" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/0b/02/ae6ceac1baeda530866a85075641cec12989bd8d31af6d5ab4a3e8c92f47/webencodings-0.5.1.tar.gz", hash = "sha256:b36a1c245f2d304965eb4e0a82848379241dc04b865afcc4aab16748587e1923", size = 9721, upload-time = "2017-04-05T20:21:34.189Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/f4/24/2a3e3df732393fed8b3ebf2ec078f05546de641fe1b667ee316ec1dcf3b7/webencodings-0.5.1-py2.py3-none-any.whl", hash = "sha256:a0af1213f3c2226497a97e2b3aa01a7e4bee4f403f95be16fc9acd2947514a78", size = 11774, upload-time = "2017-04-05T20:21:32.581Z" }, ] [[package]] name = "websocket-client" version = "1.8.0" source = { registry = "https://pypi.org/simple" } -sdist = { url = "https://files.pythonhosted.org/packages/e6/30/fba0d96b4b5fbf5948ed3f4681f7da2f9f64512e1d303f94b4cc174c24a5/websocket_client-1.8.0.tar.gz", hash = "sha256:3239df9f44da632f96012472805d40a23281a991027ce11d2f45a6f24ac4c3da", size = 54648 } +sdist = { url = "https://files.pythonhosted.org/packages/e6/30/fba0d96b4b5fbf5948ed3f4681f7da2f9f64512e1d303f94b4cc174c24a5/websocket_client-1.8.0.tar.gz", hash = "sha256:3239df9f44da632f96012472805d40a23281a991027ce11d2f45a6f24ac4c3da", size = 54648, upload-time = "2024-04-23T22:16:16.976Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/5a/84/44687a29792a70e111c5c477230a72c4b957d88d16141199bf9acb7537a3/websocket_client-1.8.0-py3-none-any.whl", hash = "sha256:17b44cc997f5c498e809b22cdf2d9c7a9e71c02c8cc2b6c56e7c2d1239bfa526", size = 58826, upload-time = "2024-04-23T22:16:14.422Z" }, +] + +[[package]] +name = "werkzeug" +version = "3.1.3" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "markupsafe", marker = "sys_platform == 'linux'" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/9f/69/83029f1f6300c5fb2471d621ab06f6ec6b3324685a2ce0f9777fd4a8b71e/werkzeug-3.1.3.tar.gz", hash = "sha256:60723ce945c19328679790e3282cc758aa4a6040e4bb330f53d30fa546d44746", size = 806925, upload-time = "2024-11-08T15:52:18.093Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/52/24/ab44c871b0f07f491e5d2ad12c9bd7358e527510618cb1b803a88e986db1/werkzeug-3.1.3-py3-none-any.whl", hash = "sha256:54b78bf3716d19a65be4fceccc0d1d7b89e608834989dfae50ea87564639213e", size = 224498, upload-time = "2024-11-08T15:52:16.132Z" }, +] + +[[package]] +name = "whatthepatch" +version = "1.0.7" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/06/28/55bc3e107a56fdcf7d5022cb32b8c21d98a9cc2df5cd9f3b93e10419099e/whatthepatch-1.0.7.tar.gz", hash = "sha256:9eefb4ebea5200408e02d413d2b4bc28daea6b78bb4b4d53431af7245f7d7edf", size = 34612, upload-time = "2024-11-16T17:21:22.153Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/8e/93/af1d6ccb69ab6b5a00e03fa0cefa563f9862412667776ea15dd4eece3a90/whatthepatch-1.0.7-py3-none-any.whl", hash = "sha256:1b6f655fd31091c001c209529dfaabbabdbad438f5de14e3951266ea0fc6e7ed", size = 11964, upload-time = "2024-11-16T17:21:20.761Z" }, +] + +[[package]] +name = "wheel" +version = "0.45.1" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/8a/98/2d9906746cdc6a6ef809ae6338005b3f21bb568bea3165cfc6a243fdc25c/wheel-0.45.1.tar.gz", hash = "sha256:661e1abd9198507b1409a20c02106d9670b2576e916d58f520316666abca6729", size = 107545, upload-time = "2024-11-23T00:18:23.513Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/0b/2c/87f3254fd8ffd29e4c02732eee68a83a1d3c346ae39bc6822dcbcb697f2b/wheel-0.45.1-py3-none-any.whl", hash = "sha256:708e7481cc80179af0e556bbf0cc00b8444c7321e2700b8d8580231d13017248", size = 72494, upload-time = "2024-11-23T00:18:21.207Z" }, +] + +[[package]] +name = "widgetsnbextension" +version = "4.0.14" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/41/53/2e0253c5efd69c9656b1843892052a31c36d37ad42812b5da45c62191f7e/widgetsnbextension-4.0.14.tar.gz", hash = "sha256:a3629b04e3edb893212df862038c7232f62973373869db5084aed739b437b5af", size = 1097428, upload-time = "2025-04-10T13:01:25.628Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/ca/51/5447876806d1088a0f8f71e16542bf350918128d0a69437df26047c8e46f/widgetsnbextension-4.0.14-py3-none-any.whl", hash = "sha256:4875a9eaf72fbf5079dc372a51a9f268fc38d46f767cbf85c43a36da5cb9b575", size = 2196503, upload-time = "2025-04-10T13:01:23.086Z" }, +] + +[[package]] +name = "wrapt" +version = "1.14.1" +source = { registry = "https://pypi.org/simple" } +resolution-markers = [ + "python_full_version >= '3.12' and sys_platform == 'linux'", + "python_full_version < '3.12' and sys_platform == 'linux'", +] +sdist = { url = "https://files.pythonhosted.org/packages/11/eb/e06e77394d6cf09977d92bff310cb0392930c08a338f99af6066a5a98f92/wrapt-1.14.1.tar.gz", hash = "sha256:380a85cf89e0e69b7cfbe2ea9f765f004ff419f34194018a6827ac0e3edfed4d", size = 50890, upload-time = "2022-05-02T05:28:31.026Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/5a/84/44687a29792a70e111c5c477230a72c4b957d88d16141199bf9acb7537a3/websocket_client-1.8.0-py3-none-any.whl", hash = "sha256:17b44cc997f5c498e809b22cdf2d9c7a9e71c02c8cc2b6c56e7c2d1239bfa526", size = 58826 }, + { url = "https://files.pythonhosted.org/packages/e7/f9/8c078b4973604cd968b23eb3dff52028b5c48f2a02c4f1f975f4d5e344d1/wrapt-1.14.1-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:ecee4132c6cd2ce5308e21672015ddfed1ff975ad0ac8d27168ea82e71413f55", size = 35432, upload-time = "2023-10-07T08:29:58.387Z" }, + { url = "https://files.pythonhosted.org/packages/6e/79/aec8185eefe20e8f49e5adeb0c2e20e016d5916d10872c17705ddac41be2/wrapt-1.14.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:2020f391008ef874c6d9e208b24f28e31bcb85ccff4f335f15a3251d222b92d9", size = 36219, upload-time = "2023-10-07T08:30:01.249Z" }, + { url = "https://files.pythonhosted.org/packages/d1/71/8d68004e5d5a676177342a56808af51e1df3b0e54b203e3295a8cd96b53b/wrapt-1.14.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:2feecf86e1f7a86517cab34ae6c2f081fd2d0dac860cb0c0ded96d799d20b335", size = 78509, upload-time = "2023-10-07T08:30:03.544Z" }, + { url = "https://files.pythonhosted.org/packages/5a/27/604d6ad71fe5935446df1b7512d491b47fe2aef8c95e9813d03d78024a28/wrapt-1.14.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:240b1686f38ae665d1b15475966fe0472f78e71b1b4903c143a842659c8e4cb9", size = 70972, upload-time = "2023-10-07T08:30:05.619Z" }, + { url = "https://files.pythonhosted.org/packages/7f/1b/e0439eec0db6520968c751bc7e12480bb80bb8d939190e0e55ed762f3c7a/wrapt-1.14.1-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a9008dad07d71f68487c91e96579c8567c98ca4c3881b9b113bc7b33e9fd78b8", size = 78402, upload-time = "2023-10-07T08:30:07.408Z" }, + { url = "https://files.pythonhosted.org/packages/b9/45/2cc612ff64061d4416baf8d0daf27bea7f79f0097638ddc2af51a3e647f3/wrapt-1.14.1-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:6447e9f3ba72f8e2b985a1da758767698efa72723d5b59accefd716e9e8272bf", size = 83373, upload-time = "2023-10-07T08:30:09.317Z" }, + { url = "https://files.pythonhosted.org/packages/ad/b7/332692b8d0387922da0f1323ad36a14e365911def3c78ea0d102f83ac592/wrapt-1.14.1-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:acae32e13a4153809db37405f5eba5bac5fbe2e2ba61ab227926a22901051c0a", size = 76299, upload-time = "2023-10-07T08:30:10.723Z" }, + { url = "https://files.pythonhosted.org/packages/f2/31/cbce966b6760e62d005c237961e839a755bf0c907199248394e2ee03ab05/wrapt-1.14.1-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:49ef582b7a1152ae2766557f0550a9fcbf7bbd76f43fbdc94dd3bf07cc7168be", size = 83361, upload-time = "2023-10-07T08:30:11.98Z" }, + { url = "https://files.pythonhosted.org/packages/9a/aa/ab46fb18072b86e87e0965a402f8723217e8c0312d1b3e2a91308df924ab/wrapt-1.14.1-cp311-cp311-win32.whl", hash = "sha256:358fe87cc899c6bb0ddc185bf3dbfa4ba646f05b1b0b9b5a27c2cb92c2cea204", size = 33454, upload-time = "2023-10-07T08:30:13.513Z" }, + { url = "https://files.pythonhosted.org/packages/ba/7e/14113996bc6ee68eb987773b4139c87afd3ceff60e27e37648aa5eb2798a/wrapt-1.14.1-cp311-cp311-win_amd64.whl", hash = "sha256:26046cd03936ae745a502abf44dac702a5e6880b2b01c29aea8ddf3353b68224", size = 35616, upload-time = "2023-10-07T08:30:14.868Z" }, ] [[package]] name = "wrapt" version = "1.17.2" source = { registry = "https://pypi.org/simple" } -sdist = { url = "https://files.pythonhosted.org/packages/c3/fc/e91cc220803d7bc4db93fb02facd8461c37364151b8494762cc88b0fbcef/wrapt-1.17.2.tar.gz", hash = "sha256:41388e9d4d1522446fe79d3213196bd9e3b301a336965b9e27ca2788ebd122f3", size = 55531 } +resolution-markers = [ + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra == 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra == 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra == 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra == 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra == 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra == 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra == 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra == 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra == 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra == 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra == 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra == 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra == 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra == 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra == 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version >= '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", + "python_full_version < '3.12' and sys_platform == 'linux' and extra != 'group-9-notebooks-datascience-base' and extra != 'group-9-notebooks-datascience-preferred' and extra != 'group-9-notebooks-datascience-tensorflow' and extra != 'group-9-notebooks-datascience-trustyai' and extra != 'group-9-notebooks-elyra-preferred' and extra != 'group-9-notebooks-elyra-trustyai' and extra != 'group-9-notebooks-jupyter-datascience-image' and extra != 'group-9-notebooks-jupyter-pytorch-image' and extra != 'group-9-notebooks-jupyter-pytorch-rocm-image' and extra != 'group-9-notebooks-jupyter-tensorflow-image' and extra != 'group-9-notebooks-jupyter-tensorflow-rocm-image' and extra != 'group-9-notebooks-jupyter-trustyai-image' and extra != 'group-9-notebooks-pytorchcuda' and extra != 'group-9-notebooks-pytorchrocm' and extra != 'group-9-notebooks-tensorflowcuda' and extra != 'group-9-notebooks-tensorflowrocm' and extra != 'group-9-notebooks-trustyai'", +] +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/a1/bd/ab55f849fd1f9a58ed7ea47f5559ff09741b25f00c191231f9f059c83949/wrapt-1.17.2-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:d5e2439eecc762cd85e7bd37161d4714aa03a33c5ba884e26c81559817ca0925", size = 53799 }, - { url = "https://files.pythonhosted.org/packages/53/18/75ddc64c3f63988f5a1d7e10fb204ffe5762bc663f8023f18ecaf31a332e/wrapt-1.17.2-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:3fc7cb4c1c744f8c05cd5f9438a3caa6ab94ce8344e952d7c45a8ed59dd88392", size = 38821 }, - { url = "https://files.pythonhosted.org/packages/48/2a/97928387d6ed1c1ebbfd4efc4133a0633546bec8481a2dd5ec961313a1c7/wrapt-1.17.2-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:8fdbdb757d5390f7c675e558fd3186d590973244fab0c5fe63d373ade3e99d40", size = 38919 }, - { url = "https://files.pythonhosted.org/packages/73/54/3bfe5a1febbbccb7a2f77de47b989c0b85ed3a6a41614b104204a788c20e/wrapt-1.17.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5bb1d0dbf99411f3d871deb6faa9aabb9d4e744d67dcaaa05399af89d847a91d", size = 88721 }, - { url = "https://files.pythonhosted.org/packages/25/cb/7262bc1b0300b4b64af50c2720ef958c2c1917525238d661c3e9a2b71b7b/wrapt-1.17.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d18a4865f46b8579d44e4fe1e2bcbc6472ad83d98e22a26c963d46e4c125ef0b", size = 80899 }, - { url = "https://files.pythonhosted.org/packages/2a/5a/04cde32b07a7431d4ed0553a76fdb7a61270e78c5fd5a603e190ac389f14/wrapt-1.17.2-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bc570b5f14a79734437cb7b0500376b6b791153314986074486e0b0fa8d71d98", size = 89222 }, - { url = "https://files.pythonhosted.org/packages/09/28/2e45a4f4771fcfb109e244d5dbe54259e970362a311b67a965555ba65026/wrapt-1.17.2-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:6d9187b01bebc3875bac9b087948a2bccefe464a7d8f627cf6e48b1bbae30f82", size = 86707 }, - { url = "https://files.pythonhosted.org/packages/c6/d2/dcb56bf5f32fcd4bd9aacc77b50a539abdd5b6536872413fd3f428b21bed/wrapt-1.17.2-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:9e8659775f1adf02eb1e6f109751268e493c73716ca5761f8acb695e52a756ae", size = 79685 }, - { url = "https://files.pythonhosted.org/packages/80/4e/eb8b353e36711347893f502ce91c770b0b0929f8f0bed2670a6856e667a9/wrapt-1.17.2-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:e8b2816ebef96d83657b56306152a93909a83f23994f4b30ad4573b00bd11bb9", size = 87567 }, - { url = "https://files.pythonhosted.org/packages/2d/82/f56956041adef78f849db6b289b282e72b55ab8045a75abad81898c28d19/wrapt-1.17.2-py3-none-any.whl", hash = "sha256:b18f2d1533a71f069c7f82d524a52599053d4c7166e9dd374ae2136b7f40f7c8", size = 23594 }, + { url = "https://files.pythonhosted.org/packages/cd/f7/a2aab2cbc7a665efab072344a8949a71081eed1d2f451f7f7d2b966594a2/wrapt-1.17.2-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:ff04ef6eec3eee8a5efef2401495967a916feaa353643defcc03fc74fe213b58", size = 53308, upload-time = "2025-01-14T10:33:33.992Z" }, + { url = "https://files.pythonhosted.org/packages/50/ff/149aba8365fdacef52b31a258c4dc1c57c79759c335eff0b3316a2664a64/wrapt-1.17.2-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:4db983e7bca53819efdbd64590ee96c9213894272c776966ca6306b73e4affda", size = 38488, upload-time = "2025-01-14T10:33:35.264Z" }, + { url = "https://files.pythonhosted.org/packages/65/46/5a917ce85b5c3b490d35c02bf71aedaa9f2f63f2d15d9949cc4ba56e8ba9/wrapt-1.17.2-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:9abc77a4ce4c6f2a3168ff34b1da9b0f311a8f1cfd694ec96b0603dff1c79438", size = 38776, upload-time = "2025-01-14T10:33:38.28Z" }, + { url = "https://files.pythonhosted.org/packages/ca/74/336c918d2915a4943501c77566db41d1bd6e9f4dbc317f356b9a244dfe83/wrapt-1.17.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0b929ac182f5ace000d459c59c2c9c33047e20e935f8e39371fa6e3b85d56f4a", size = 83776, upload-time = "2025-01-14T10:33:40.678Z" }, + { url = "https://files.pythonhosted.org/packages/09/99/c0c844a5ccde0fe5761d4305485297f91d67cf2a1a824c5f282e661ec7ff/wrapt-1.17.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:f09b286faeff3c750a879d336fb6d8713206fc97af3adc14def0cdd349df6000", size = 75420, upload-time = "2025-01-14T10:33:41.868Z" }, + { url = "https://files.pythonhosted.org/packages/b4/b0/9fc566b0fe08b282c850063591a756057c3247b2362b9286429ec5bf1721/wrapt-1.17.2-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:1a7ed2d9d039bd41e889f6fb9364554052ca21ce823580f6a07c4ec245c1f5d6", size = 83199, upload-time = "2025-01-14T10:33:43.598Z" }, + { url = "https://files.pythonhosted.org/packages/9d/4b/71996e62d543b0a0bd95dda485219856def3347e3e9380cc0d6cf10cfb2f/wrapt-1.17.2-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:129a150f5c445165ff941fc02ee27df65940fcb8a22a61828b1853c98763a64b", size = 82307, upload-time = "2025-01-14T10:33:48.499Z" }, + { url = "https://files.pythonhosted.org/packages/39/35/0282c0d8789c0dc9bcc738911776c762a701f95cfe113fb8f0b40e45c2b9/wrapt-1.17.2-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:1fb5699e4464afe5c7e65fa51d4f99e0b2eadcc176e4aa33600a3df7801d6662", size = 75025, upload-time = "2025-01-14T10:33:51.191Z" }, + { url = "https://files.pythonhosted.org/packages/4f/6d/90c9fd2c3c6fee181feecb620d95105370198b6b98a0770cba090441a828/wrapt-1.17.2-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:9a2bce789a5ea90e51a02dfcc39e31b7f1e662bc3317979aa7e5538e3a034f72", size = 81879, upload-time = "2025-01-14T10:33:52.328Z" }, + { url = "https://files.pythonhosted.org/packages/8f/fa/9fb6e594f2ce03ef03eddbdb5f4f90acb1452221a5351116c7c4708ac865/wrapt-1.17.2-cp311-cp311-win32.whl", hash = "sha256:4afd5814270fdf6380616b321fd31435a462019d834f83c8611a0ce7484c7317", size = 36419, upload-time = "2025-01-14T10:33:53.551Z" }, + { url = "https://files.pythonhosted.org/packages/47/f8/fb1773491a253cbc123c5d5dc15c86041f746ed30416535f2a8df1f4a392/wrapt-1.17.2-cp311-cp311-win_amd64.whl", hash = "sha256:acc130bc0375999da18e3d19e5a86403667ac0c4042a094fefb7eec8ebac7cf3", size = 38773, upload-time = "2025-01-14T10:33:56.323Z" }, + { url = "https://files.pythonhosted.org/packages/a1/bd/ab55f849fd1f9a58ed7ea47f5559ff09741b25f00c191231f9f059c83949/wrapt-1.17.2-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:d5e2439eecc762cd85e7bd37161d4714aa03a33c5ba884e26c81559817ca0925", size = 53799, upload-time = "2025-01-14T10:33:57.4Z" }, + { url = "https://files.pythonhosted.org/packages/53/18/75ddc64c3f63988f5a1d7e10fb204ffe5762bc663f8023f18ecaf31a332e/wrapt-1.17.2-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:3fc7cb4c1c744f8c05cd5f9438a3caa6ab94ce8344e952d7c45a8ed59dd88392", size = 38821, upload-time = "2025-01-14T10:33:59.334Z" }, + { url = "https://files.pythonhosted.org/packages/48/2a/97928387d6ed1c1ebbfd4efc4133a0633546bec8481a2dd5ec961313a1c7/wrapt-1.17.2-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:8fdbdb757d5390f7c675e558fd3186d590973244fab0c5fe63d373ade3e99d40", size = 38919, upload-time = "2025-01-14T10:34:04.093Z" }, + { url = "https://files.pythonhosted.org/packages/73/54/3bfe5a1febbbccb7a2f77de47b989c0b85ed3a6a41614b104204a788c20e/wrapt-1.17.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5bb1d0dbf99411f3d871deb6faa9aabb9d4e744d67dcaaa05399af89d847a91d", size = 88721, upload-time = "2025-01-14T10:34:07.163Z" }, + { url = "https://files.pythonhosted.org/packages/25/cb/7262bc1b0300b4b64af50c2720ef958c2c1917525238d661c3e9a2b71b7b/wrapt-1.17.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d18a4865f46b8579d44e4fe1e2bcbc6472ad83d98e22a26c963d46e4c125ef0b", size = 80899, upload-time = "2025-01-14T10:34:09.82Z" }, + { url = "https://files.pythonhosted.org/packages/2a/5a/04cde32b07a7431d4ed0553a76fdb7a61270e78c5fd5a603e190ac389f14/wrapt-1.17.2-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bc570b5f14a79734437cb7b0500376b6b791153314986074486e0b0fa8d71d98", size = 89222, upload-time = "2025-01-14T10:34:11.258Z" }, + { url = "https://files.pythonhosted.org/packages/09/28/2e45a4f4771fcfb109e244d5dbe54259e970362a311b67a965555ba65026/wrapt-1.17.2-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:6d9187b01bebc3875bac9b087948a2bccefe464a7d8f627cf6e48b1bbae30f82", size = 86707, upload-time = "2025-01-14T10:34:12.49Z" }, + { url = "https://files.pythonhosted.org/packages/c6/d2/dcb56bf5f32fcd4bd9aacc77b50a539abdd5b6536872413fd3f428b21bed/wrapt-1.17.2-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:9e8659775f1adf02eb1e6f109751268e493c73716ca5761f8acb695e52a756ae", size = 79685, upload-time = "2025-01-14T10:34:15.043Z" }, + { url = "https://files.pythonhosted.org/packages/80/4e/eb8b353e36711347893f502ce91c770b0b0929f8f0bed2670a6856e667a9/wrapt-1.17.2-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:e8b2816ebef96d83657b56306152a93909a83f23994f4b30ad4573b00bd11bb9", size = 87567, upload-time = "2025-01-14T10:34:16.563Z" }, + { url = "https://files.pythonhosted.org/packages/17/27/4fe749a54e7fae6e7146f1c7d914d28ef599dacd4416566c055564080fe2/wrapt-1.17.2-cp312-cp312-win32.whl", hash = "sha256:468090021f391fe0056ad3e807e3d9034e0fd01adcd3bdfba977b6fdf4213ea9", size = 36672, upload-time = "2025-01-14T10:34:17.727Z" }, + { url = "https://files.pythonhosted.org/packages/15/06/1dbf478ea45c03e78a6a8c4be4fdc3c3bddea5c8de8a93bc971415e47f0f/wrapt-1.17.2-cp312-cp312-win_amd64.whl", hash = "sha256:ec89ed91f2fa8e3f52ae53cd3cf640d6feff92ba90d62236a81e4e563ac0e991", size = 38865, upload-time = "2025-01-14T10:34:19.577Z" }, + { url = "https://files.pythonhosted.org/packages/2d/82/f56956041adef78f849db6b289b282e72b55ab8045a75abad81898c28d19/wrapt-1.17.2-py3-none-any.whl", hash = "sha256:b18f2d1533a71f069c7f82d524a52599053d4c7166e9dd374ae2136b7f40f7c8", size = 23594, upload-time = "2025-01-14T10:35:44.018Z" }, ] [[package]] name = "xmltodict" -version = "0.14.2" +version = "0.13.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/39/0d/40df5be1e684bbaecdb9d1e0e40d5d482465de6b00cbb92b84ee5d243c7f/xmltodict-0.13.0.tar.gz", hash = "sha256:341595a488e3e01a85a9d8911d8912fd922ede5fecc4dce437eb4b6c8d037e56", size = 33813, upload-time = "2022-05-08T07:00:04.916Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/94/db/fd0326e331726f07ff7f40675cd86aa804bfd2e5016c727fa761c934990e/xmltodict-0.13.0-py2.py3-none-any.whl", hash = "sha256:aa89e8fd76320154a40d19a0df04a4695fb9dc5ba977cbb68ab3e4eb225e7852", size = 9971, upload-time = "2022-05-08T07:00:02.898Z" }, +] + +[[package]] +name = "xxhash" +version = "3.5.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/00/5e/d6e5258d69df8b4ed8c83b6664f2b47d30d2dec551a29ad72a6c69eafd31/xxhash-3.5.0.tar.gz", hash = "sha256:84f2caddf951c9cbf8dc2e22a89d4ccf5d86391ac6418fe81e3c67d0cf60b45f", size = 84241, upload-time = "2024-08-17T09:20:38.972Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/b8/c7/afed0f131fbda960ff15eee7f304fa0eeb2d58770fade99897984852ef23/xxhash-3.5.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:02c2e816896dc6f85922ced60097bcf6f008dedfc5073dcba32f9c8dd786f3c1", size = 31969, upload-time = "2024-08-17T09:18:00.852Z" }, + { url = "https://files.pythonhosted.org/packages/8c/0c/7c3bc6d87e5235672fcc2fb42fd5ad79fe1033925f71bf549ee068c7d1ca/xxhash-3.5.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:6027dcd885e21581e46d3c7f682cfb2b870942feeed58a21c29583512c3f09f8", size = 30800, upload-time = "2024-08-17T09:18:01.863Z" }, + { url = "https://files.pythonhosted.org/packages/04/9e/01067981d98069eec1c20201f8c145367698e9056f8bc295346e4ea32dd1/xxhash-3.5.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1308fa542bbdbf2fa85e9e66b1077eea3a88bef38ee8a06270b4298a7a62a166", size = 221566, upload-time = "2024-08-17T09:18:03.461Z" }, + { url = "https://files.pythonhosted.org/packages/d4/09/d4996de4059c3ce5342b6e1e6a77c9d6c91acce31f6ed979891872dd162b/xxhash-3.5.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:c28b2fdcee797e1c1961cd3bcd3d545cab22ad202c846235197935e1df2f8ef7", size = 201214, upload-time = "2024-08-17T09:18:05.616Z" }, + { url = "https://files.pythonhosted.org/packages/62/f5/6d2dc9f8d55a7ce0f5e7bfef916e67536f01b85d32a9fbf137d4cadbee38/xxhash-3.5.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:924361811732ddad75ff23e90efd9ccfda4f664132feecb90895bade6a1b4623", size = 429433, upload-time = "2024-08-17T09:18:06.957Z" }, + { url = "https://files.pythonhosted.org/packages/d9/72/9256303f10e41ab004799a4aa74b80b3c5977d6383ae4550548b24bd1971/xxhash-3.5.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:89997aa1c4b6a5b1e5b588979d1da048a3c6f15e55c11d117a56b75c84531f5a", size = 194822, upload-time = "2024-08-17T09:18:08.331Z" }, + { url = "https://files.pythonhosted.org/packages/34/92/1a3a29acd08248a34b0e6a94f4e0ed9b8379a4ff471f1668e4dce7bdbaa8/xxhash-3.5.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:685c4f4e8c59837de103344eb1c8a3851f670309eb5c361f746805c5471b8c88", size = 208538, upload-time = "2024-08-17T09:18:10.332Z" }, + { url = "https://files.pythonhosted.org/packages/53/ad/7fa1a109663366de42f724a1cdb8e796a260dbac45047bce153bc1e18abf/xxhash-3.5.0-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:dbd2ecfbfee70bc1a4acb7461fa6af7748ec2ab08ac0fa298f281c51518f982c", size = 216953, upload-time = "2024-08-17T09:18:11.707Z" }, + { url = "https://files.pythonhosted.org/packages/35/02/137300e24203bf2b2a49b48ce898ecce6fd01789c0fcd9c686c0a002d129/xxhash-3.5.0-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:25b5a51dc3dfb20a10833c8eee25903fd2e14059e9afcd329c9da20609a307b2", size = 203594, upload-time = "2024-08-17T09:18:13.799Z" }, + { url = "https://files.pythonhosted.org/packages/23/03/aeceb273933d7eee248c4322b98b8e971f06cc3880e5f7602c94e5578af5/xxhash-3.5.0-cp311-cp311-musllinux_1_2_ppc64le.whl", hash = "sha256:a8fb786fb754ef6ff8c120cb96629fb518f8eb5a61a16aac3a979a9dbd40a084", size = 210971, upload-time = "2024-08-17T09:18:15.824Z" }, + { url = "https://files.pythonhosted.org/packages/e3/64/ed82ec09489474cbb35c716b189ddc1521d8b3de12b1b5ab41ce7f70253c/xxhash-3.5.0-cp311-cp311-musllinux_1_2_s390x.whl", hash = "sha256:a905ad00ad1e1c34fe4e9d7c1d949ab09c6fa90c919860c1534ff479f40fd12d", size = 415050, upload-time = "2024-08-17T09:18:17.142Z" }, + { url = "https://files.pythonhosted.org/packages/71/43/6db4c02dcb488ad4e03bc86d70506c3d40a384ee73c9b5c93338eb1f3c23/xxhash-3.5.0-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:963be41bcd49f53af6d795f65c0da9b4cc518c0dd9c47145c98f61cb464f4839", size = 192216, upload-time = "2024-08-17T09:18:18.779Z" }, + { url = "https://files.pythonhosted.org/packages/22/6d/db4abec29e7a567455344433d095fdb39c97db6955bb4a2c432e486b4d28/xxhash-3.5.0-cp311-cp311-win32.whl", hash = "sha256:109b436096d0a2dd039c355fa3414160ec4d843dfecc64a14077332a00aeb7da", size = 30120, upload-time = "2024-08-17T09:18:20.009Z" }, + { url = "https://files.pythonhosted.org/packages/52/1c/fa3b61c0cf03e1da4767213672efe186b1dfa4fc901a4a694fb184a513d1/xxhash-3.5.0-cp311-cp311-win_amd64.whl", hash = "sha256:b702f806693201ad6c0a05ddbbe4c8f359626d0b3305f766077d51388a6bac58", size = 30003, upload-time = "2024-08-17T09:18:21.052Z" }, + { url = "https://files.pythonhosted.org/packages/6b/8e/9e6fc572acf6e1cc7ccb01973c213f895cb8668a9d4c2b58a99350da14b7/xxhash-3.5.0-cp311-cp311-win_arm64.whl", hash = "sha256:c4dcb4120d0cc3cc448624147dba64e9021b278c63e34a38789b688fd0da9bf3", size = 26777, upload-time = "2024-08-17T09:18:22.809Z" }, + { url = "https://files.pythonhosted.org/packages/07/0e/1bfce2502c57d7e2e787600b31c83535af83746885aa1a5f153d8c8059d6/xxhash-3.5.0-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:14470ace8bd3b5d51318782cd94e6f94431974f16cb3b8dc15d52f3b69df8e00", size = 31969, upload-time = "2024-08-17T09:18:24.025Z" }, + { url = "https://files.pythonhosted.org/packages/3f/d6/8ca450d6fe5b71ce521b4e5db69622383d039e2b253e9b2f24f93265b52c/xxhash-3.5.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:59aa1203de1cb96dbeab595ded0ad0c0056bb2245ae11fac11c0ceea861382b9", size = 30787, upload-time = "2024-08-17T09:18:25.318Z" }, + { url = "https://files.pythonhosted.org/packages/5b/84/de7c89bc6ef63d750159086a6ada6416cc4349eab23f76ab870407178b93/xxhash-3.5.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:08424f6648526076e28fae6ea2806c0a7d504b9ef05ae61d196d571e5c879c84", size = 220959, upload-time = "2024-08-17T09:18:26.518Z" }, + { url = "https://files.pythonhosted.org/packages/fe/86/51258d3e8a8545ff26468c977101964c14d56a8a37f5835bc0082426c672/xxhash-3.5.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:61a1ff00674879725b194695e17f23d3248998b843eb5e933007ca743310f793", size = 200006, upload-time = "2024-08-17T09:18:27.905Z" }, + { url = "https://files.pythonhosted.org/packages/02/0a/96973bd325412feccf23cf3680fd2246aebf4b789122f938d5557c54a6b2/xxhash-3.5.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:f2f2c61bee5844d41c3eb015ac652a0229e901074951ae48581d58bfb2ba01be", size = 428326, upload-time = "2024-08-17T09:18:29.335Z" }, + { url = "https://files.pythonhosted.org/packages/11/a7/81dba5010f7e733de88af9555725146fc133be97ce36533867f4c7e75066/xxhash-3.5.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9d32a592cac88d18cc09a89172e1c32d7f2a6e516c3dfde1b9adb90ab5df54a6", size = 194380, upload-time = "2024-08-17T09:18:30.706Z" }, + { url = "https://files.pythonhosted.org/packages/fb/7d/f29006ab398a173f4501c0e4977ba288f1c621d878ec217b4ff516810c04/xxhash-3.5.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:70dabf941dede727cca579e8c205e61121afc9b28516752fd65724be1355cc90", size = 207934, upload-time = "2024-08-17T09:18:32.133Z" }, + { url = "https://files.pythonhosted.org/packages/8a/6e/6e88b8f24612510e73d4d70d9b0c7dff62a2e78451b9f0d042a5462c8d03/xxhash-3.5.0-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:e5d0ddaca65ecca9c10dcf01730165fd858533d0be84c75c327487c37a906a27", size = 216301, upload-time = "2024-08-17T09:18:33.474Z" }, + { url = "https://files.pythonhosted.org/packages/af/51/7862f4fa4b75a25c3b4163c8a873f070532fe5f2d3f9b3fc869c8337a398/xxhash-3.5.0-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:3e5b5e16c5a480fe5f59f56c30abdeba09ffd75da8d13f6b9b6fd224d0b4d0a2", size = 203351, upload-time = "2024-08-17T09:18:34.889Z" }, + { url = "https://files.pythonhosted.org/packages/22/61/8d6a40f288f791cf79ed5bb113159abf0c81d6efb86e734334f698eb4c59/xxhash-3.5.0-cp312-cp312-musllinux_1_2_ppc64le.whl", hash = "sha256:149b7914451eb154b3dfaa721315117ea1dac2cc55a01bfbd4df7c68c5dd683d", size = 210294, upload-time = "2024-08-17T09:18:36.355Z" }, + { url = "https://files.pythonhosted.org/packages/17/02/215c4698955762d45a8158117190261b2dbefe9ae7e5b906768c09d8bc74/xxhash-3.5.0-cp312-cp312-musllinux_1_2_s390x.whl", hash = "sha256:eade977f5c96c677035ff39c56ac74d851b1cca7d607ab3d8f23c6b859379cab", size = 414674, upload-time = "2024-08-17T09:18:38.536Z" }, + { url = "https://files.pythonhosted.org/packages/31/5c/b7a8db8a3237cff3d535261325d95de509f6a8ae439a5a7a4ffcff478189/xxhash-3.5.0-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:fa9f547bd98f5553d03160967866a71056a60960be00356a15ecc44efb40ba8e", size = 192022, upload-time = "2024-08-17T09:18:40.138Z" }, + { url = "https://files.pythonhosted.org/packages/78/e3/dd76659b2811b3fd06892a8beb850e1996b63e9235af5a86ea348f053e9e/xxhash-3.5.0-cp312-cp312-win32.whl", hash = "sha256:f7b58d1fd3551b8c80a971199543379be1cee3d0d409e1f6d8b01c1a2eebf1f8", size = 30170, upload-time = "2024-08-17T09:18:42.163Z" }, + { url = "https://files.pythonhosted.org/packages/d9/6b/1c443fe6cfeb4ad1dcf231cdec96eb94fb43d6498b4469ed8b51f8b59a37/xxhash-3.5.0-cp312-cp312-win_amd64.whl", hash = "sha256:fa0cafd3a2af231b4e113fba24a65d7922af91aeb23774a8b78228e6cd785e3e", size = 30040, upload-time = "2024-08-17T09:18:43.699Z" }, + { url = "https://files.pythonhosted.org/packages/0f/eb/04405305f290173acc0350eba6d2f1a794b57925df0398861a20fbafa415/xxhash-3.5.0-cp312-cp312-win_arm64.whl", hash = "sha256:586886c7e89cb9828bcd8a5686b12e161368e0064d040e225e72607b43858ba2", size = 26796, upload-time = "2024-08-17T09:18:45.29Z" }, +] + +[[package]] +name = "xyzservices" +version = "2025.4.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/00/af/c0f7f97bb320d14c089476f487b81f733238cc5603e0914f2e409f49d589/xyzservices-2025.4.0.tar.gz", hash = "sha256:6fe764713648fac53450fbc61a3c366cb6ae5335a1b2ae0c3796b495de3709d8", size = 1134722, upload-time = "2025-04-25T10:38:09.669Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/d6/7d/b77455d7c7c51255b2992b429107fab811b2e36ceaf76da1e55a045dc568/xyzservices-2025.4.0-py3-none-any.whl", hash = "sha256:8d4db9a59213ccb4ce1cf70210584f30b10795bff47627cdfb862b39ff6e10c9", size = 90391, upload-time = "2025-04-25T10:38:08.468Z" }, +] + +[[package]] +name = "yapf" +version = "0.43.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "platformdirs", marker = "sys_platform == 'linux'" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/23/97/b6f296d1e9cc1ec25c7604178b48532fa5901f721bcf1b8d8148b13e5588/yapf-0.43.0.tar.gz", hash = "sha256:00d3aa24bfedff9420b2e0d5d9f5ab6d9d4268e72afbf59bb3fa542781d5218e", size = 254907, upload-time = "2024-11-14T00:11:41.584Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/37/81/6acd6601f61e31cfb8729d3da6d5df966f80f374b78eff83760714487338/yapf-0.43.0-py3-none-any.whl", hash = "sha256:224faffbc39c428cb095818cf6ef5511fdab6f7430a10783fdfb292ccf2852ca", size = 256158, upload-time = "2024-11-14T00:11:39.37Z" }, +] + +[[package]] +name = "yarl" +version = "1.20.1" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "idna", marker = "sys_platform == 'linux'" }, + { name = "multidict", marker = "sys_platform == 'linux'" }, + { name = "propcache", marker = "sys_platform == 'linux'" }, +] +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/b1/18/893b50efc2350e47a874c5c2d67e55a0ea5df91186b2a6f5ac52eff887cd/yarl-1.20.1-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:47ee6188fea634bdfaeb2cc420f5b3b17332e6225ce88149a17c413c77ff269e", size = 133833, upload-time = "2025-06-10T00:43:07.393Z" }, + { url = "https://files.pythonhosted.org/packages/89/ed/b8773448030e6fc47fa797f099ab9eab151a43a25717f9ac043844ad5ea3/yarl-1.20.1-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:d0f6500f69e8402d513e5eedb77a4e1818691e8f45e6b687147963514d84b44b", size = 91070, upload-time = "2025-06-10T00:43:09.538Z" }, + { url = "https://files.pythonhosted.org/packages/e3/e3/409bd17b1e42619bf69f60e4f031ce1ccb29bd7380117a55529e76933464/yarl-1.20.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:7a8900a42fcdaad568de58887c7b2f602962356908eedb7628eaf6021a6e435b", size = 89818, upload-time = "2025-06-10T00:43:11.575Z" }, + { url = "https://files.pythonhosted.org/packages/f8/77/64d8431a4d77c856eb2d82aa3de2ad6741365245a29b3a9543cd598ed8c5/yarl-1.20.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:bad6d131fda8ef508b36be3ece16d0902e80b88ea7200f030a0f6c11d9e508d4", size = 347003, upload-time = "2025-06-10T00:43:14.088Z" }, + { url = "https://files.pythonhosted.org/packages/8d/d2/0c7e4def093dcef0bd9fa22d4d24b023788b0a33b8d0088b51aa51e21e99/yarl-1.20.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.manylinux_2_31_armv7l.whl", hash = "sha256:df018d92fe22aaebb679a7f89fe0c0f368ec497e3dda6cb81a567610f04501f1", size = 336537, upload-time = "2025-06-10T00:43:16.431Z" }, + { url = "https://files.pythonhosted.org/packages/f0/f3/fc514f4b2cf02cb59d10cbfe228691d25929ce8f72a38db07d3febc3f706/yarl-1.20.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:8f969afbb0a9b63c18d0feecf0db09d164b7a44a053e78a7d05f5df163e43833", size = 362358, upload-time = "2025-06-10T00:43:18.704Z" }, + { url = "https://files.pythonhosted.org/packages/ea/6d/a313ac8d8391381ff9006ac05f1d4331cee3b1efaa833a53d12253733255/yarl-1.20.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:812303eb4aa98e302886ccda58d6b099e3576b1b9276161469c25803a8db277d", size = 357362, upload-time = "2025-06-10T00:43:20.888Z" }, + { url = "https://files.pythonhosted.org/packages/00/70/8f78a95d6935a70263d46caa3dd18e1f223cf2f2ff2037baa01a22bc5b22/yarl-1.20.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:98c4a7d166635147924aa0bf9bfe8d8abad6fffa6102de9c99ea04a1376f91e8", size = 348979, upload-time = "2025-06-10T00:43:23.169Z" }, + { url = "https://files.pythonhosted.org/packages/cb/05/42773027968968f4f15143553970ee36ead27038d627f457cc44bbbeecf3/yarl-1.20.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:12e768f966538e81e6e7550f9086a6236b16e26cd964cf4df35349970f3551cf", size = 337274, upload-time = "2025-06-10T00:43:27.111Z" }, + { url = "https://files.pythonhosted.org/packages/05/be/665634aa196954156741ea591d2f946f1b78ceee8bb8f28488bf28c0dd62/yarl-1.20.1-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:fe41919b9d899661c5c28a8b4b0acf704510b88f27f0934ac7a7bebdd8938d5e", size = 363294, upload-time = "2025-06-10T00:43:28.96Z" }, + { url = "https://files.pythonhosted.org/packages/eb/90/73448401d36fa4e210ece5579895731f190d5119c4b66b43b52182e88cd5/yarl-1.20.1-cp311-cp311-musllinux_1_2_armv7l.whl", hash = "sha256:8601bc010d1d7780592f3fc1bdc6c72e2b6466ea34569778422943e1a1f3c389", size = 358169, upload-time = "2025-06-10T00:43:30.701Z" }, + { url = "https://files.pythonhosted.org/packages/c3/b0/fce922d46dc1eb43c811f1889f7daa6001b27a4005587e94878570300881/yarl-1.20.1-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:daadbdc1f2a9033a2399c42646fbd46da7992e868a5fe9513860122d7fe7a73f", size = 362776, upload-time = "2025-06-10T00:43:32.51Z" }, + { url = "https://files.pythonhosted.org/packages/f1/0d/b172628fce039dae8977fd22caeff3eeebffd52e86060413f5673767c427/yarl-1.20.1-cp311-cp311-musllinux_1_2_ppc64le.whl", hash = "sha256:03aa1e041727cb438ca762628109ef1333498b122e4c76dd858d186a37cec845", size = 381341, upload-time = "2025-06-10T00:43:34.543Z" }, + { url = "https://files.pythonhosted.org/packages/6b/9b/5b886d7671f4580209e855974fe1cecec409aa4a89ea58b8f0560dc529b1/yarl-1.20.1-cp311-cp311-musllinux_1_2_s390x.whl", hash = "sha256:642980ef5e0fa1de5fa96d905c7e00cb2c47cb468bfcac5a18c58e27dbf8d8d1", size = 379988, upload-time = "2025-06-10T00:43:36.489Z" }, + { url = "https://files.pythonhosted.org/packages/73/be/75ef5fd0fcd8f083a5d13f78fd3f009528132a1f2a1d7c925c39fa20aa79/yarl-1.20.1-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:86971e2795584fe8c002356d3b97ef6c61862720eeff03db2a7c86b678d85b3e", size = 371113, upload-time = "2025-06-10T00:43:38.592Z" }, + { url = "https://files.pythonhosted.org/packages/50/4f/62faab3b479dfdcb741fe9e3f0323e2a7d5cd1ab2edc73221d57ad4834b2/yarl-1.20.1-cp311-cp311-win32.whl", hash = "sha256:597f40615b8d25812f14562699e287f0dcc035d25eb74da72cae043bb884d773", size = 81485, upload-time = "2025-06-10T00:43:41.038Z" }, + { url = "https://files.pythonhosted.org/packages/f0/09/d9c7942f8f05c32ec72cd5c8e041c8b29b5807328b68b4801ff2511d4d5e/yarl-1.20.1-cp311-cp311-win_amd64.whl", hash = "sha256:26ef53a9e726e61e9cd1cda6b478f17e350fb5800b4bd1cd9fe81c4d91cfeb2e", size = 86686, upload-time = "2025-06-10T00:43:42.692Z" }, + { url = "https://files.pythonhosted.org/packages/5f/9a/cb7fad7d73c69f296eda6815e4a2c7ed53fc70c2f136479a91c8e5fbdb6d/yarl-1.20.1-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:bdcc4cd244e58593a4379fe60fdee5ac0331f8eb70320a24d591a3be197b94a9", size = 133667, upload-time = "2025-06-10T00:43:44.369Z" }, + { url = "https://files.pythonhosted.org/packages/67/38/688577a1cb1e656e3971fb66a3492501c5a5df56d99722e57c98249e5b8a/yarl-1.20.1-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:b29a2c385a5f5b9c7d9347e5812b6f7ab267193c62d282a540b4fc528c8a9d2a", size = 91025, upload-time = "2025-06-10T00:43:46.295Z" }, + { url = "https://files.pythonhosted.org/packages/50/ec/72991ae51febeb11a42813fc259f0d4c8e0507f2b74b5514618d8b640365/yarl-1.20.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:1112ae8154186dfe2de4732197f59c05a83dc814849a5ced892b708033f40dc2", size = 89709, upload-time = "2025-06-10T00:43:48.22Z" }, + { url = "https://files.pythonhosted.org/packages/99/da/4d798025490e89426e9f976702e5f9482005c548c579bdae792a4c37769e/yarl-1.20.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:90bbd29c4fe234233f7fa2b9b121fb63c321830e5d05b45153a2ca68f7d310ee", size = 352287, upload-time = "2025-06-10T00:43:49.924Z" }, + { url = "https://files.pythonhosted.org/packages/1a/26/54a15c6a567aac1c61b18aa0f4b8aa2e285a52d547d1be8bf48abe2b3991/yarl-1.20.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.manylinux_2_31_armv7l.whl", hash = "sha256:680e19c7ce3710ac4cd964e90dad99bf9b5029372ba0c7cbfcd55e54d90ea819", size = 345429, upload-time = "2025-06-10T00:43:51.7Z" }, + { url = "https://files.pythonhosted.org/packages/d6/95/9dcf2386cb875b234353b93ec43e40219e14900e046bf6ac118f94b1e353/yarl-1.20.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:4a979218c1fdb4246a05efc2cc23859d47c89af463a90b99b7c56094daf25a16", size = 365429, upload-time = "2025-06-10T00:43:53.494Z" }, + { url = "https://files.pythonhosted.org/packages/91/b2/33a8750f6a4bc224242a635f5f2cff6d6ad5ba651f6edcccf721992c21a0/yarl-1.20.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:255b468adf57b4a7b65d8aad5b5138dce6a0752c139965711bdcb81bc370e1b6", size = 363862, upload-time = "2025-06-10T00:43:55.766Z" }, + { url = "https://files.pythonhosted.org/packages/98/28/3ab7acc5b51f4434b181b0cee8f1f4b77a65919700a355fb3617f9488874/yarl-1.20.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a97d67108e79cfe22e2b430d80d7571ae57d19f17cda8bb967057ca8a7bf5bfd", size = 355616, upload-time = "2025-06-10T00:43:58.056Z" }, + { url = "https://files.pythonhosted.org/packages/36/a3/f666894aa947a371724ec7cd2e5daa78ee8a777b21509b4252dd7bd15e29/yarl-1.20.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:8570d998db4ddbfb9a590b185a0a33dbf8aafb831d07a5257b4ec9948df9cb0a", size = 339954, upload-time = "2025-06-10T00:43:59.773Z" }, + { url = "https://files.pythonhosted.org/packages/f1/81/5f466427e09773c04219d3450d7a1256138a010b6c9f0af2d48565e9ad13/yarl-1.20.1-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:97c75596019baae7c71ccf1d8cc4738bc08134060d0adfcbe5642f778d1dca38", size = 365575, upload-time = "2025-06-10T00:44:02.051Z" }, + { url = "https://files.pythonhosted.org/packages/2e/e3/e4b0ad8403e97e6c9972dd587388940a032f030ebec196ab81a3b8e94d31/yarl-1.20.1-cp312-cp312-musllinux_1_2_armv7l.whl", hash = "sha256:1c48912653e63aef91ff988c5432832692ac5a1d8f0fb8a33091520b5bbe19ef", size = 365061, upload-time = "2025-06-10T00:44:04.196Z" }, + { url = "https://files.pythonhosted.org/packages/ac/99/b8a142e79eb86c926f9f06452eb13ecb1bb5713bd01dc0038faf5452e544/yarl-1.20.1-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:4c3ae28f3ae1563c50f3d37f064ddb1511ecc1d5584e88c6b7c63cf7702a6d5f", size = 364142, upload-time = "2025-06-10T00:44:06.527Z" }, + { url = "https://files.pythonhosted.org/packages/34/f2/08ed34a4a506d82a1a3e5bab99ccd930a040f9b6449e9fd050320e45845c/yarl-1.20.1-cp312-cp312-musllinux_1_2_ppc64le.whl", hash = "sha256:c5e9642f27036283550f5f57dc6156c51084b458570b9d0d96100c8bebb186a8", size = 381894, upload-time = "2025-06-10T00:44:08.379Z" }, + { url = "https://files.pythonhosted.org/packages/92/f8/9a3fbf0968eac704f681726eff595dce9b49c8a25cd92bf83df209668285/yarl-1.20.1-cp312-cp312-musllinux_1_2_s390x.whl", hash = "sha256:2c26b0c49220d5799f7b22c6838409ee9bc58ee5c95361a4d7831f03cc225b5a", size = 383378, upload-time = "2025-06-10T00:44:10.51Z" }, + { url = "https://files.pythonhosted.org/packages/af/85/9363f77bdfa1e4d690957cd39d192c4cacd1c58965df0470a4905253b54f/yarl-1.20.1-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:564ab3d517e3d01c408c67f2e5247aad4019dcf1969982aba3974b4093279004", size = 374069, upload-time = "2025-06-10T00:44:12.834Z" }, + { url = "https://files.pythonhosted.org/packages/35/99/9918c8739ba271dcd935400cff8b32e3cd319eaf02fcd023d5dcd487a7c8/yarl-1.20.1-cp312-cp312-win32.whl", hash = "sha256:daea0d313868da1cf2fac6b2d3a25c6e3a9e879483244be38c8e6a41f1d876a5", size = 81249, upload-time = "2025-06-10T00:44:14.731Z" }, + { url = "https://files.pythonhosted.org/packages/eb/83/5d9092950565481b413b31a23e75dd3418ff0a277d6e0abf3729d4d1ce25/yarl-1.20.1-cp312-cp312-win_amd64.whl", hash = "sha256:48ea7d7f9be0487339828a4de0360d7ce0efc06524a48e1810f945c45b813698", size = 86710, upload-time = "2025-06-10T00:44:16.716Z" }, + { url = "https://files.pythonhosted.org/packages/b4/2d/2345fce04cfd4bee161bf1e7d9cdc702e3e16109021035dbb24db654a622/yarl-1.20.1-py3-none-any.whl", hash = "sha256:83b8eb083fe4683c6115795d9fc1cfaf2cbbefb19b3a1cb68f6527460f483a77", size = 46542, upload-time = "2025-06-10T00:46:07.521Z" }, +] + +[[package]] +name = "yaspin" +version = "3.1.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "termcolor", marker = "sys_platform == 'linux'" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/07/3c/70df5034e6712fcc238b76f6afd1871de143a2a124d80ae2c377cde180f3/yaspin-3.1.0.tar.gz", hash = "sha256:7b97c7e257ec598f98cef9878e038bfa619ceb54ac31d61d8ead2b3128f8d7c7", size = 36791, upload-time = "2024-09-22T17:07:09.376Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/89/78/fa25b385d9f2c406719b5cf574a0980f5ccc6ea1f8411d56249f44acd3c2/yaspin-3.1.0-py3-none-any.whl", hash = "sha256:5e3d4dfb547d942cae6565718123f1ecfa93e745b7e51871ad2bbae839e71b73", size = 18629, upload-time = "2024-09-22T17:07:06.923Z" }, +] + +[[package]] +name = "zipp" +version = "3.23.0" source = { registry = "https://pypi.org/simple" } -sdist = { url = "https://files.pythonhosted.org/packages/50/05/51dcca9a9bf5e1bce52582683ce50980bcadbc4fa5143b9f2b19ab99958f/xmltodict-0.14.2.tar.gz", hash = "sha256:201e7c28bb210e374999d1dde6382923ab0ed1a8a5faeece48ab525b7810a553", size = 51942 } +sdist = { url = "https://files.pythonhosted.org/packages/e3/02/0f2892c661036d50ede074e376733dca2ae7c6eb617489437771209d4180/zipp-3.23.0.tar.gz", hash = "sha256:a07157588a12518c9d4034df3fbbee09c814741a33ff63c05fa29d26a2404166", size = 25547, upload-time = "2025-06-08T17:06:39.4Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/d6/45/fc303eb433e8a2a271739c98e953728422fa61a3c1f36077a49e395c972e/xmltodict-0.14.2-py2.py3-none-any.whl", hash = "sha256:20cc7d723ed729276e808f26fb6b3599f786cbc37e06c65e192ba77c40f20aac", size = 9981 }, + { url = "https://files.pythonhosted.org/packages/2e/54/647ade08bf0db230bfea292f893923872fd20be6ac6f53b2b936ba839d75/zipp-3.23.0-py3-none-any.whl", hash = "sha256:071652d6115ed432f5ce1d34c336c0adfd6a884660d1e9712a256d3d3bd4b14e", size = 10276, upload-time = "2025-06-08T17:06:38.034Z" }, ]